r2940: Complain when there is an attempt to register a backend for a subsystem that...
authorJelmer Vernooij <jelmer@samba.org>
Tue, 12 Oct 2004 15:57:20 +0000 (15:57 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:59:50 +0000 (12:59 -0500)
not (yet) exist
(This used to be commit 0130713fbe3d838964542a700839c4e276b18547)

source4/lib/module.c

index c724d872ee970b516941b2c4cacccd7dac9d11c1..67fb830e6f62961556346ca1d17cf3e7623800ac 100644 (file)
@@ -162,6 +162,8 @@ NTSTATUS register_backend(const char *subsystem, const void *args)
                if(!strcmp(subsystem, s->name)) return s->callback(args);
                s = s->next;
        }
+       
+       DEBUG(0, ("Unable to register backend for subsystem '%s'\n", subsystem));
 
        return NT_STATUS_NOT_IMPLEMENTED;
 }