diff options
author | Michael Adam <obnox@samba.org> | 2012-06-11 17:47:04 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-06-12 07:21:43 +0200 |
commit | 33ebba9c5a43ab5f295b34f8e6320c08b3a75ab6 (patch) | |
tree | d49bb6826442f3c7dae1c59f1bc7497cdc2098f3 /source3/libsmb | |
parent | 08e9b1774f429ea82b851ba7e51e00990daa064a (diff) | |
download | samba-33ebba9c5a43ab5f295b34f8e6320c08b3a75ab6.tar.gz samba-33ebba9c5a43ab5f295b34f8e6320c08b3a75ab6.tar.bz2 samba-33ebba9c5a43ab5f295b34f8e6320c08b3a75ab6.zip |
libsmbclient: fix use of a non-existent word (existant)
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/clirap2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clirap2.c b/source3/libsmb/clirap2.c index ce94041915..1333f468f4 100644 --- a/source3/libsmb/clirap2.c +++ b/source3/libsmb/clirap2.c @@ -1127,7 +1127,7 @@ int cli_NetFileClose(struct cli_state *cli, uint32 file_id ) if (res == 0) { /* nothing to do */ } else if (res == 2314){ - DEBUG(1, ("NetFileClose2 - attempt to close non-existant file open instance\n")); + DEBUG(1, ("NetFileClose2 - attempt to close non-existent file open instance\n")); } else { DEBUG(4,("NetFileClose2 res=%d\n", res)); } |