[PATCH] (2.4 BK) Fix syntax errors in net/sctp/Config.in

From: Patrick Mau
Date: Tue Feb 17 2004 - 13:29:36 EST


Hi,

there are three small syntax errors in net/sctp/Config.in in
the current linux 2.4 BK tree. The patch to fix them is below.

Please apply from within ./net/sctp ...

Thanks,
Patrick

--- Config.in.orig 2004-02-16 20:42:50.000000000 +0100
+++ Config.in 2004-02-16 20:43:23.000000000 +0100
@@ -15,15 +15,15 @@
bool ' SCTP: Debug messages' CONFIG_SCTP_DBG_MSG
bool ' SCTP: Debug object counts' CONFIG_SCTP_DBG_OBJCNT
fi
-if [ "$CONFIG_CRYPTO_HMAC" = "n"]; then
+if [ "$CONFIG_CRYPTO_HMAC" = "n" ]; then
choice 'SCTP: Cookie HMAC Algorithm' \
"HMAC-NONE CONFIG_SCTP_HMAC_NONE" HMAC-NONE
else
- if [ "$CONFIG_CRYPTO_MD5" = "n" -a "$CONFIG_CRYPTO_SHA1" = "n"]; then
+ if [ "$CONFIG_CRYPTO_MD5" = "n" -a "$CONFIG_CRYPTO_SHA1" = "n" ]; then
choice 'SCTP: Cookie HMAC Algorithm' \
"HMAC-NONE CONFIG_SCTP_HMAC_NONE" HMAC-NONE
else
- if [ "$CONFIG_CRYPTO_MD5" != "n" -a "$CONFIG_CRYPTO_SHA1" != "n"]; then
+ if [ "$CONFIG_CRYPTO_MD5" != "n" -a "$CONFIG_CRYPTO_SHA1" != "n" ]; then
choice 'SCTP: Cookie HMAC Algorithm' \
"HMAC-NONE CONFIG_SCTP_HMAC_NONE \
HMAC-SHA1 CONFIG_SCTP_HMAC_SHA1 \
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/