summaryrefslogtreecommitdiff
path: root/source4/lib/module.c
diff options
context:
space:
mode:
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;