Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 64001
b: refs/heads/master
c: e576de8
h: refs/heads/master
i:
  63999: 52f3550
v: v3
  • Loading branch information
Jesper Juhl authored and David S. Miller committed Aug 14, 2007
1 parent d5b3b43 commit 141151c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 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: d725fdc8027a4cd961f58d92917fbb91b171abfa
refs/heads/master: e576de82ee628f68e5a44527c7ee99eadeab2e62
14 changes: 10 additions & 4 deletions trunk/net/dccp/feat.c
Original file line number Diff line number Diff line change
Expand Up @@ -327,10 +327,16 @@ static void dccp_feat_empty_confirm(struct dccp_minisock *dmsk,
}

switch (type) {
case DCCPO_CHANGE_L: opt->dccpop_type = DCCPO_CONFIRM_R; break;
case DCCPO_CHANGE_R: opt->dccpop_type = DCCPO_CONFIRM_L; break;
default: DCCP_WARN("invalid type %d\n", type); return;

case DCCPO_CHANGE_L:
opt->dccpop_type = DCCPO_CONFIRM_R;
break;
case DCCPO_CHANGE_R:
opt->dccpop_type = DCCPO_CONFIRM_L;
break;
default:
DCCP_WARN("invalid type %d\n", type);
kfree(opt);
return;
}
opt->dccpop_feat = feature;
opt->dccpop_val = NULL;
Expand Down

0 comments on commit 141151c

Please sign in to comment.