From 7a70ff39328cd24b9c7db11eb4ae1a18c698a538 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Mon, 7 Jan 2013 14:26:15 +0100 Subject: [PATCH] sctp: fix typo in default SCTP cookie choice Commit 0d0863b0 (sctp: Change defaults on cookie hmac selection) introduced a choice configuration option to select the default SCTP cookie hashing algorithm, a typo was introduced for the default choice. This is an issue when running make oldconfig because an explicit choice number must be entered since no default is available. This patch fixes the typo, thus providing a valid default choice. Signed-off-by: Florian Fainelli --- net/sctp/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/sctp/Kconfig b/net/sctp/Kconfig index c262106..7521d94 100644 --- a/net/sctp/Kconfig +++ b/net/sctp/Kconfig @@ -68,7 +68,7 @@ config SCTP_DBG_OBJCNT If unsure, say N choice prompt "Default SCTP cookie HMAC encoding" - default SCTP_COOKIE_HMAC_MD5 + default SCTP_DEFAULT_COOKIE_HMAC_MD5 help This option sets the default sctp cookie hmac algorithm when in doubt select 'md5' -- 1.7.10.4