summaryrefslogtreecommitdiff
path: root/source4/lib/module.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2004-05-31 17:14:27 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:22 -0500
commit9fba08b621432861b52d5af0b7d994ba0e0100f0 (patch)
tree01c025a1437d90d1cdaaced25daed9fdbe51d8be /source4/lib/module.c
parent50b21753ba816ef23ddaf59dcbf698869e22d986 (diff)
downloadsamba-9fba08b621432861b52d5af0b7d994ba0e0100f0.tar.gz
samba-9fba08b621432861b52d5af0b7d994ba0e0100f0.tar.bz2
samba-9fba08b621432861b52d5af0b7d994ba0e0100f0.zip
r955: Update debian package rules... builds now
(This used to be commit 3df8ff6cf111c6601554bffb411506bd43f726c7)
Diffstat (limited to 'source4/lib/module.c')
-rw-r--r--source4/lib/module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/module.c b/source4/lib/module.c
index 15f92db59e..f03e19d924 100644
--- a/source4/lib/module.c
+++ b/source4/lib/module.c
@@ -2,7 +2,7 @@
Unix SMB/CIFS implementation.
module loading system
- Copyright (C) Jelmer Vernooij 2002-2003
+ Copyright (C) Jelmer Vernooij 2002-2004
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -133,7 +133,7 @@ NTSTATUS register_subsystem(const char *name, register_backend_function callback
while(t) {
if(!strcmp(name, t->name)) {
/* its already registered! */
- DEBUG(0,("SUBSYSTEM '%s' for type already registered\n", name));
+ DEBUG(0,("Subsystem '%s' already registered\n", name));
return NT_STATUS_OBJECT_NAME_COLLISION;
}
t = t->next;