From: Michael Adam Date: Mon, 11 Jun 2012 15:47:04 +0000 (+0200) Subject: libsmbclient: fix use of a non-existent word (existant) X-Git-Tag: samba-4.0.0beta2~216 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=33ebba9c5a43ab5f295b34f8e6320c08b3a75ab6;p=thirdparty%2Fsamba.git libsmbclient: fix use of a non-existent word (existant) --- diff --git a/source3/libsmb/clirap2.c b/source3/libsmb/clirap2.c index ce940419151..1333f468f47 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)); }