kernel: add support for 3.8-rc2
[openwrt/staging/chunkeey.git] / target / linux / generic / patches-3.8 / 001-sctp_fix_default_choice.patch
1 From 7a70ff39328cd24b9c7db11eb4ae1a18c698a538 Mon Sep 17 00:00:00 2001
2 From: Florian Fainelli <florian@openwrt.org>
3 Date: Mon, 7 Jan 2013 14:26:15 +0100
4 Subject: [PATCH] sctp: fix typo in default SCTP cookie choice
5
6 Commit 0d0863b0 (sctp: Change defaults on cookie hmac selection)
7 introduced a choice configuration option to select the default SCTP
8 cookie hashing algorithm, a typo was introduced for the default choice.
9 This is an issue when running make oldconfig because an explicit choice
10 number must be entered since no default is available. This patch fixes
11 the typo, thus providing a valid default choice.
12
13 Signed-off-by: Florian Fainelli <florian@openwrt.org>
14 ---
15 net/sctp/Kconfig | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/net/sctp/Kconfig b/net/sctp/Kconfig
19 index c262106..7521d94 100644
20 --- a/net/sctp/Kconfig
21 +++ b/net/sctp/Kconfig
22 @@ -68,7 +68,7 @@ config SCTP_DBG_OBJCNT
23 If unsure, say N
24 choice
25 prompt "Default SCTP cookie HMAC encoding"
26 - default SCTP_COOKIE_HMAC_MD5
27 + default SCTP_DEFAULT_COOKIE_HMAC_MD5
28 help
29 This option sets the default sctp cookie hmac algorithm
30 when in doubt select 'md5'
31 --
32 1.7.10.4
33