Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 90255
b: refs/heads/master
c: 2444844
h: refs/heads/master
i:
  90253: 02ea5b7
  90251: c0a2834
  90247: d4febba
  90239: 7dbee9e
v: v3
  • Loading branch information
Florian Westphal authored and David S. Miller committed Mar 24, 2008
1 parent 36b5ce0 commit 2d3c62d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3d3b2d25a4debaff05a9e6f5c55a0d31e4334234
refs/heads/master: 2444844cefd2ce0ac73858cf980de07e33a5dd20
2 changes: 1 addition & 1 deletion trunk/net/sctp/sm_make_chunk.c
Original file line number Diff line number Diff line change
Expand Up @@ -1782,7 +1782,7 @@ static int sctp_process_inv_paramlength(const struct sctp_association *asoc,
const struct sctp_chunk *chunk,
struct sctp_chunk **errp)
{
char error[] = "The following parameter had invalid length:";
static const char error[] = "The following parameter had invalid length:";
size_t payload_len = WORD_ROUND(sizeof(error)) +
sizeof(sctp_paramhdr_t);

Expand Down
8 changes: 4 additions & 4 deletions trunk/net/sctp/sm_statefuns.c
Original file line number Diff line number Diff line change
Expand Up @@ -4219,7 +4219,7 @@ static sctp_disposition_t sctp_sf_violation_chunklen(
void *arg,
sctp_cmd_seq_t *commands)
{
char err_str[]="The following chunk had invalid length:";
static const char err_str[]="The following chunk had invalid length:";

return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
sizeof(err_str));
Expand All @@ -4236,7 +4236,7 @@ static sctp_disposition_t sctp_sf_violation_paramlen(
const sctp_subtype_t type,
void *arg,
sctp_cmd_seq_t *commands) {
char err_str[] = "The following parameter had invalid length:";
static const char err_str[] = "The following parameter had invalid length:";

return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
sizeof(err_str));
Expand All @@ -4255,7 +4255,7 @@ static sctp_disposition_t sctp_sf_violation_ctsn(
void *arg,
sctp_cmd_seq_t *commands)
{
char err_str[]="The cumulative tsn ack beyond the max tsn currently sent:";
static const char err_str[]="The cumulative tsn ack beyond the max tsn currently sent:";

return sctp_sf_abort_violation(ep, asoc, arg, commands, err_str,
sizeof(err_str));
Expand All @@ -4274,7 +4274,7 @@ static sctp_disposition_t sctp_sf_violation_chunk(
void *arg,
sctp_cmd_seq_t *commands)
{
char err_str[]="The following chunk violates protocol:";
static const char err_str[]="The following chunk violates protocol:";

if (!asoc)
return sctp_sf_violation(ep, asoc, type, arg, commands);
Expand Down

0 comments on commit 2d3c62d

Please sign in to comment.