uwrap: Remove problematic FALL_THROUGH in uwrap_load_lib_handle()
authorAndreas Schneider <asn@samba.org>
Tue, 7 May 2019 11:07:01 +0000 (13:07 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Mon, 3 Jun 2019 10:54:22 +0000 (12:54 +0200)
src/uid_wrapper.c:93:24: error: a label can only be part of a statement
and a declaration is not a statement

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Gary Lockyer <gary@samba.org>
src/uid_wrapper.c

index 85dd2bac75667e1c31070fe78b6a7a067d84bb45..84c3ca5b2e450a851192cdd0db7cc9475006cfac 100644 (file)
@@ -418,9 +418,7 @@ static void *uwrap_load_lib_handle(enum uwrap_lib lib)
 
        switch (lib) {
        case UWRAP_LIBNSL:
-               FALL_THROUGH;
        case UWRAP_LIBSOCKET:
-               FALL_THROUGH;
        case UWRAP_LIBC:
                handle = uwrap.libc.handle;
                if (handle == NULL) {