diff options
author | Karolin Seeger <kseeger@samba.org> | 2009-06-06 15:10:08 +0200 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2009-06-06 15:11:16 +0200 |
commit | c94d1cd7b1dc3ff99ae5a1eb9058ed6015fb9749 (patch) | |
tree | 3e3d8761c97959ac344a5d82b0c3d239043ee3bd | |
parent | 23b501e02a15fe94e807e279c224e5657ce47af2 (diff) | |
download | samba-c94d1cd7b1dc3ff99ae5a1eb9058ed6015fb9749.tar.gz samba-c94d1cd7b1dc3ff99ae5a1eb9058ed6015fb9749.tar.bz2 samba-c94d1cd7b1dc3ff99ae5a1eb9058ed6015fb9749.zip |
s3/passdb: Fix debug message: 'net setmaxrid' does not exist.
This is aiming bug #6351.
Karolin
-rw-r--r-- | source3/passdb/pdb_interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/passdb/pdb_interface.c b/source3/passdb/pdb_interface.c index b69e41590f..fdf09ae13b 100644 --- a/source3/passdb/pdb_interface.c +++ b/source3/passdb/pdb_interface.c @@ -1074,8 +1074,8 @@ bool pdb_new_rid(uint32 *rid) DEBUG(0, ("'algorithmic rid base' is set but a passdb backend " "without algorithmic RIDs is chosen.\n")); DEBUGADD(0, ("Please map all used groups using 'net groupmap " - "add', set the maximum used RID using\n")); - DEBUGADD(0, ("'net setmaxrid' and remove the parameter\n")); + "add', set the maximum used RID\n")); + DEBUGADD(0, ("and remove the parameter\n")); return False; } |