r3269: fixed return value
authorAndrew Tridgell <tridge@samba.org>
Tue, 26 Oct 2004 22:42:43 +0000 (22:42 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:04:48 +0000 (13:04 -0500)
(This used to be commit bc392d88b1fa34edfc922f43e190da003160a7d2)

source4/auth/auth_winbind.c

index deada025d8df88829982234e8c0cc57c24179829..1bc4ecbc9fe7c56322b7b4fa2c9d69ab0a26a0d2 100644 (file)
@@ -124,6 +124,6 @@ NTSTATUS auth_winbind_init(void)
        if (!NT_STATUS_IS_OK(ret)) {
                DEBUG(0,("Failed to register '%s' auth backend!\n",
                        ops.name));
-               return ret;
        }
+       return ret;
 }