diff options
author | Michael Adam <obnox@samba.org> | 2007-06-04 14:48:26 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:23:07 -0500 |
commit | c8883bed7f64e508eec5a445e2220f9fca90f6fc (patch) | |
tree | fef4d5e078644c70a527cd4693a77fa673780fac | |
parent | 9bf4687932853873bae1df460762f3d96c5d332f (diff) | |
download | samba-c8883bed7f64e508eec5a445e2220f9fca90f6fc.tar.gz samba-c8883bed7f64e508eec5a445e2220f9fca90f6fc.tar.bz2 samba-c8883bed7f64e508eec5a445e2220f9fca90f6fc.zip |
r23340: Fix typo in debug ouput. Found by Karolin Seeger <ks@sernet.de>.
Michael
(This used to be commit 81c7d152b2cb8fafa3d510c3d35fb86bae1e0856)
-rw-r--r-- | source3/nsswitch/idmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/idmap.c b/source3/nsswitch/idmap.c index 8f3e7c465e..0309697b20 100644 --- a/source3/nsswitch/idmap.c +++ b/source3/nsswitch/idmap.c @@ -427,7 +427,7 @@ NTSTATUS idmap_init(void) /* check the set_mapping function exists otherwise mark the module as readonly */ if ( ! dom->methods->set_mapping) { - DEBUG(5, ("Forcing to readonly, as ithis module can't store arbitrary mappings.\n")); + DEBUG(5, ("Forcing to readonly, as this module can't store arbitrary mappings.\n")); dom->readonly = True; } |