diff options
author | Jeremy Allison <jra@samba.org> | 2000-02-14 21:52:35 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-02-14 21:52:35 +0000 |
commit | 9d59503d554fe66a674265c2036f01c236165963 (patch) | |
tree | e535bb8d9c95c619adcf3371fc1dadb1bae076e8 | |
parent | 89c3cf8ab673e0f0d4a0041e7fda061dfb1063e9 (diff) | |
download | samba-9d59503d554fe66a674265c2036f01c236165963.tar.gz samba-9d59503d554fe66a674265c2036f01c236165963.tar.bz2 samba-9d59503d554fe66a674265c2036f01c236165963.zip |
Ooops. Fixed stupid typo with missing ! in cli error code.
Jeremy.
(This used to be commit 0babc4baea62aa40e8698ab88b3a95d514c001b6)
-rw-r--r-- | source3/libsmb/clientgen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clientgen.c b/source3/libsmb/clientgen.c index 0b669715b9..d40bfc379a 100644 --- a/source3/libsmb/clientgen.c +++ b/source3/libsmb/clientgen.c @@ -2693,7 +2693,7 @@ int cli_error(struct cli_state *cli, uint8 *eclass, uint32 *num, uint32 *nt_rpc_ if (num ) *num = 0; if (nt_rpc_error) *nt_rpc_error = 0; - if(cli->initialised) + if(!cli->initialised) return EINVAL; if(!cli->inbuf) |