From: Randy Dunlap Date: Thu, 27 Nov 2008 23:30:53 +0000 (-0800) Subject: sctp: fix missing label when PROC_FS=n X-Git-Tag: v2.6.29-rc1~581^2~370 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=157653ce79a606409a8bfb496cba797b2984b18f;p=linux-2.6-omap-h63xx.git sctp: fix missing label when PROC_FS=n Fix missing label when CONFIG_PROC_FS=n: net/sctp/protocol.c: In function 'sctp_proc_init': net/sctp/protocol.c:106: error: label 'out_nomem' used but not defined make[3]: *** [net/sctp/protocol.o] Error 1 Signed-off-by: Randy Dunlap Signed-off-by: David S. Miller --- diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c index d5ea232c912..b78e3be6901 100644 --- a/net/sctp/protocol.c +++ b/net/sctp/protocol.c @@ -139,11 +139,12 @@ out_snmp_proc_init: } out_free_percpu: percpu_counter_destroy(&sctp_sockets_allocated); -out_nomem: - return -ENOMEM; #else return 0; #endif /* CONFIG_PROC_FS */ + +out_nomem: + return -ENOMEM; } /* Clean up the proc fs entry for the SCTP protocol.