diff options
author | Michael Adam <obnox@samba.org> | 2007-12-13 14:38:05 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2007-12-13 14:38:05 +0100 |
commit | 0d8146d5de33b4a8fc4b2833fb7e112f440ae365 (patch) | |
tree | 7b9cead20e1fda256181b30981baafb50fd37302 /source3/auth | |
parent | 733425f312729bf4c26bfcea866f310bc9b6b5be (diff) | |
download | samba-0d8146d5de33b4a8fc4b2833fb7e112f440ae365.tar.gz samba-0d8146d5de33b4a8fc4b2833fb7e112f440ae365.tar.bz2 samba-0d8146d5de33b4a8fc4b2833fb7e112f440ae365.zip |
Fix typo in debug statement.
Michael
(This used to be commit da23684261f40c06dea30ab2df0c878ebb0d0d81)
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/token_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/token_util.c b/source3/auth/token_util.c index 63672bcf74..330acde6e4 100644 --- a/source3/auth/token_util.c +++ b/source3/auth/token_util.c @@ -85,7 +85,7 @@ NT_USER_TOKEN *get_root_nt_token( void ) return token; if ( !(pw = sys_getpwnam( "root" )) ) { - DEBUG(0,("get_root_nt_token: getpwnam\"root\") failed!\n")); + DEBUG(0,("get_root_nt_token: getpwnam(\"root\") failed!\n")); return NULL; } |