From 08feb74221427423b44f3ea5cae182f7e392f0f5 Mon Sep 17 00:00:00 2001 From: "Christopher R. Hertel" Date: Wed, 12 Aug 1998 14:51:17 +0000 Subject: I've added a dbgflush() function to debug.c. Calling this will cause the debug format buffer to be written out (and reset). fflush() is also called to force the issue. I replaced the call to fflush() in client.c with a call to dbgflush(), which seems to have fixed the problem that Andrew was working on (i.e., that the prompt was not displayed when using smbclient). Chris -)----- (This used to be commit a97460869fe1448be5132fdab586d30872d21a69) --- source3/client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/client') diff --git a/source3/client/client.c b/source3/client/client.c index f010dfebf4..d23bdb5796 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -3418,7 +3418,7 @@ static BOOL process(char *base_directory) /* display a prompt */ DEBUG(0,("smb: %s> ", CNV_LANG(cur_dir))); - fflush(dbf); + dbgflush( ); wait_keyboard(InBuffer); -- cgit