diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-10-05 13:13:31 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-10-05 13:13:31 +0000 |
commit | f3c79936d7fc21d3257432962b23764ca00b0cbb (patch) | |
tree | 8f942150cf4c7b549ea5e7aa3175ee6e1f61df98 /source3/lib | |
parent | f6153293603e8413933e8d539df4f2c0b18a6a4c (diff) | |
download | samba-f3c79936d7fc21d3257432962b23764ca00b0cbb.tar.gz samba-f3c79936d7fc21d3257432962b23764ca00b0cbb.tar.bz2 samba-f3c79936d7fc21d3257432962b23764ca00b0cbb.zip |
- replace the base36 function with one that works on more systems
(compiler bugs were the problem)
- minor password cleanups (catch WfWG bug where it sets the password
to a space instead of a NULL)
- fix printing problem for kanji users
- minor cleanups
(This used to be commit 92566ecc315c29da6e9aaa67ddae33e64f5bcc67)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/access.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/access.c b/source3/lib/access.c index 3b3f236c91..31a48d09d3 100644 --- a/source3/lib/access.c +++ b/source3/lib/access.c @@ -239,7 +239,7 @@ static int string_match(char *tok,char *s) if (netgroup_ok) return(YES); #else - DEBUG(0,("access: netgroup support is not configured")); + DEBUG(0,("access: netgroup support is not configured\n")); return (NO); #endif } else if (strcasecmp(tok, "ALL") == 0) { /* all: match any */ |