From 33ebba9c5a43ab5f295b34f8e6320c08b3a75ab6 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 11 Jun 2012 17:47:04 +0200 Subject: libsmbclient: fix use of a non-existent word (existant) --- source3/libsmb/clirap2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/libsmb') 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)); } -- cgit