public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net/sctp/Config.in make oldconfig compatibility (bash)
@ 2004-02-17 12:23 Matthias Andree
  2004-02-17 18:48 ` Sridhar Samudrala
  0 siblings, 1 reply; 5+ messages in thread
From: Matthias Andree @ 2004-02-17 12:23 UTC (permalink / raw)
  To: sri, lksctp-developers; +Cc: Linux-Kernel mailing list, Marcelo Tosatti

Hello,

I've needed the patch enclosed below the signature to remove some "make
oldconfig" complaints in the current Linux-2.4 BK version.

Please Cc: feedback to my sender address unless you are including
linux-kernel; I'm not subscribed to lksctp-developers.

Matthias Andree



You can import this changeset into BK by piping this whole message to:
'| bk receive [path to repository]' or apply the patch as usual.

===================================================================


ChangeSet@1.1317, 2004-02-16 13:04:03+01:00, matthias.andree@gmx.de
  Fix "make oldconfig" (bash 2) by inserting leading space before closing bracket.
  Add leading space for some choice options for consistent formatting.


 Config.in |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)


diff -Nru a/net/sctp/Config.in b/net/sctp/Config.in
--- a/net/sctp/Config.in	Tue Feb 17 13:12:46 2004
+++ b/net/sctp/Config.in	Tue Feb 17 13:12:46 2004
@@ -15,26 +15,26 @@
    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
-      choice 'SCTP: Cookie HMAC Algorithm' \
+    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 \
+         HMAC-SHA1		CONFIG_SCTP_HMAC_SHA1 \
          HMAC-MD5		CONFIG_SCTP_HMAC_MD5"	HMAC-SHA1
     else
       if [ "$CONFIG_CRYPTO_MD5" != "n" ]; then
-        choice 'SCTP: Cookie HMAC Algorithm' \
+        choice '    SCTP: Cookie HMAC Algorithm' \
         "HMAC-NONE		CONFIG_SCTP_HMAC_NONE \
          HMAC-MD5		CONFIG_SCTP_HMAC_MD5"	HMAC-MD5
       else
-        choice 'SCTP: Cookie HMAC Algorithm' \
+        choice '    SCTP: Cookie HMAC Algorithm' \
         "HMAC-NONE		CONFIG_SCTP_HMAC_NONE \
          HMAC-SHA1		CONFIG_SCTP_HMAC_SHA1"	HMAC-SHA1
       fi

===================================================================


This BitKeeper patch contains the following changesets:
1.1317

# User:	matthias.andree
# Host:	gmx.de
# Root:	/suse/kernel/BK/linux-2.4

# Patch vers:	1.3
# Patch type:	REGULAR

== ChangeSet ==
torvalds@athlon.transmeta.com|ChangeSet|20020205173056|16047|c1d11a41ed024864
marcelo@logos.cnet|ChangeSet|20040215224359|07068
D 1.1317 04/02/16 13:04:03+01:00 matthias.andree@gmx.de +1 -0
B torvalds@athlon.transmeta.com|ChangeSet|20020205173056|16047|c1d11a41ed024864
C
c Fix "make oldconfig" (bash 2) by inserting leading space before closing bracket.
c Add leading space for some choice options for consistent formatting.
K 7892
P ChangeSet
------------------------------------------------

0a0
> damien.morange@hp.com|net/sctp/Config.in|20030919112027|12961|ee6ef1685a9ff3d6 matthias.andree@gmx.de|net/sctp/Config.in|20040216120146|33591

== net/sctp/Config.in ==
damien.morange@hp.com|net/sctp/Config.in|20030919112027|12961|ee6ef1685a9ff3d6
sri@us.ibm.com|net/sctp/Config.in|20040213003652|33541
D 1.3 04/02/16 13:01:46+01:00 matthias.andree@gmx.de +7 -7
B torvalds@athlon.transmeta.com|ChangeSet|20020205173056|16047|c1d11a41ed024864
C
c Fix "make oldconfig" (bash 2) by inserting leading space before closing bracket.
c Add leading space for some choice options for consistent formatting.
K 33591
O -rw-rw-r--
P net/sctp/Config.in
------------------------------------------------

D18 1
I18 1
if [ "$CONFIG_CRYPTO_HMAC" = "n" ]; then
D22 1
I22 1
  if [ "$CONFIG_CRYPTO_MD5" = "n" -a "$CONFIG_CRYPTO_SHA1" = "n" ]; then
D26 2
I27 2
    if [ "$CONFIG_CRYPTO_MD5" != "n" -a "$CONFIG_CRYPTO_SHA1" != "n" ]; then
      choice '    SCTP: Cookie HMAC Algorithm' \
D29 1
I29 1
         HMAC-SHA1		CONFIG_SCTP_HMAC_SHA1 \
D33 1
I33 1
        choice '    SCTP: Cookie HMAC Algorithm' \
D37 1
I37 1
        choice '    SCTP: Cookie HMAC Algorithm' \

# Patch checksum=3b6cedb7

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2004-02-17 21:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-02-17 12:23 [PATCH] net/sctp/Config.in make oldconfig compatibility (bash) Matthias Andree
2004-02-17 18:48 ` Sridhar Samudrala
2004-02-17 19:05   ` David S. Miller
2004-02-17 19:31     ` [Lksctp-developers] " Sridhar Samudrala
2004-02-17 21:06       ` Matthias Andree

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox