diff options
author | Christopher R. Hertel <crh@samba.org> | 1998-08-12 14:51:17 +0000 |
---|---|---|
committer | Christopher R. Hertel <crh@samba.org> | 1998-08-12 14:51:17 +0000 |
commit | a97460869fe1448be5132fdab586d30872d21a69 (patch) | |
tree | de49761d66b98358cd4c8d94635bf8f9a2bbf00d /source/lib | |
parent | 638ee7d265982ca95ae7f49e2a84431bdf147c21 (diff) | |
download | samba-a97460869fe1448be5132fdab586d30872d21a69.tar.gz samba-a97460869fe1448be5132fdab586d30872d21a69.tar.xz samba-a97460869fe1448be5132fdab586d30872d21a69.zip |
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 -)-----
Diffstat (limited to 'source/lib')
-rw-r--r-- | source/lib/debug.c | 36 |
1 files changed, 31 insertions, 5 deletions
diff --git a/source/lib/debug.c b/source/lib/debug.c index 4270150d156..24f508c0b40 100644 --- a/source/lib/debug.c +++ b/source/lib/debug.c @@ -383,6 +383,22 @@ va_dcl return( 0 ); } /* Debug1 */ + +/* ************************************************************************** ** + * Print the buffer content via Debug1(), then reset the buffer. + * + * Input: none + * Output: none + * + * ************************************************************************** ** + */ +static void bufr_print( void ) + { + format_bufr[format_pos] = '\0'; + (void)Debug1( "%s", format_bufr ); + format_pos = 0; + } /* bufr_print */ + /* ************************************************************************** ** * Format the debug message text. * @@ -420,11 +436,7 @@ static void format_debug_text( char *msg ) /* If a newline is encountered, print & restart. */ if( '\n' == msg[i] ) - { - format_bufr[format_pos] = '\0'; - (void)Debug1( "%s", format_bufr ); - format_pos = 0; - } + bufr_print(); } /* Just to be safe... */ @@ -432,6 +444,20 @@ static void format_debug_text( char *msg ) } /* format_debug_text */ /* ************************************************************************** ** + * Flush debug output, including the format buffer content. + * + * Input: none + * Output: none + * + * ************************************************************************** ** + */ +void dbgflush( void ) + { + bufr_print(); + (void)fflush( dbf ); + } /* dbgflush */ + +/* ************************************************************************** ** * Print a Debug Header. * * Input: level - Debug level of the message (not the system-wide debug |