diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-06-16 01:13:17 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-06-16 01:13:17 +0000 |
commit | 12096155041830a72ef765625f47b82c6d5f5ad7 (patch) | |
tree | 3c3f83d380be94d0c089e1573e1d401fb0a94459 | |
parent | a2039bc4c6aff4a7aa5c89a7876bd7cbfdd47bf9 (diff) | |
download | samba-12096155041830a72ef765625f47b82c6d5f5ad7.tar.gz samba-12096155041830a72ef765625f47b82c6d5f5ad7.tar.bz2 samba-12096155041830a72ef765625f47b82c6d5f5ad7.zip |
another improved debug statement
(This used to be commit ac69b9c83cde306f89143fe43038adff876dd0b0)
-rw-r--r-- | source3/utils/net_rpc_join.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_rpc_join.c b/source3/utils/net_rpc_join.c index fdb979a0e4..76b86fd8da 100644 --- a/source3/utils/net_rpc_join.c +++ b/source3/utils/net_rpc_join.c @@ -240,7 +240,7 @@ int net_rpc_join_newstyle(int argc, const char **argv) acct_name, nt_errstr(result))); if (name_types[0] != SID_NAME_USER) { - DEBUG(0, ("%s is not a user account\n", acct_name)); + DEBUG(0, ("%s is not a user account (type=%d)\n", acct_name, name_types[0])); goto done; } |