diff options
author | Tim Potter <tpot@samba.org> | 2001-07-25 06:42:05 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-07-25 06:42:05 +0000 |
commit | 648528196ca136469d82b83cd2ba89b1b30290ae (patch) | |
tree | 518288bd589393ca6485f7f5ca4ec829e85404a0 /source3/utils | |
parent | 9de7c5e52155ee869605884526b9895ad58c0312 (diff) | |
download | samba-648528196ca136469d82b83cd2ba89b1b30290ae.tar.gz samba-648528196ca136469d82b83cd2ba89b1b30290ae.tar.xz samba-648528196ca136469d82b83cd2ba89b1b30290ae.zip |
Held a shoot-out between NT_STATUS_NO_PROBLEMO and NT_STATUS_NOPROBLEMO.
According to the incorruptible judges find and grep, the latter won.
Mmm - procrastination. (-:
(This used to be commit 2e339403605177b15d5185a8fdd1b06f3f043168)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/smbpasswd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/smbpasswd.c b/source3/utils/smbpasswd.c index cfc8ac6aa1d..aa369e61b43 100644 --- a/source3/utils/smbpasswd.c +++ b/source3/utils/smbpasswd.c @@ -162,13 +162,13 @@ Join a domain using the administrator username and password /* Macro for checking RPC error codes to make things more readable */ #define CHECK_RPC_ERR(rpc, msg) \ - if ((result = rpc) != NT_STATUS_NO_PROBLEMO) { \ + if ((result = rpc) != NT_STATUS_NOPROBLEMO) { \ DEBUG(0, (msg ": %s\n", get_nt_error_msg(result))); \ goto done; \ } #define CHECK_RPC_ERR_DEBUG(rpc, debug_args) \ - if ((result = rpc) != NT_STATUS_NO_PROBLEMO) { \ + if ((result = rpc) != NT_STATUS_NOPROBLEMO) { \ DEBUG(0, debug_args); \ goto done; \ } |