1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-12 12:23:50 +03:00

r12576: r12115@cabra: derrell | 2005-12-29 11:16:03 -0500

bug (enhancement) #2651: add option to log debug messages to stderr instead of stdout
This commit is contained in:
Derrell Lipman
2005-12-29 16:26:06 +00:00
committed by Gerald (Jerry) Carter
parent 0070d816ab
commit 4182eb99af
3 changed files with 75 additions and 19 deletions

View File

@@ -47,11 +47,12 @@ struct _SMBCFILE {
struct smbc_internal_data {
/** INTERNAL: is this handle initialized ?
/*
* Is this handle initialized ?
*/
int _initialized;
BOOL _initialized;
/** INTERNAL: dirent pointer location
/* dirent pointer location
*
* Leave room for any urlencoded filename and the comment field.
*
@@ -64,13 +65,20 @@ struct smbc_internal_data {
*/
char _dirent[1024];
/** INTERNAL: server connection list
/*
* server connection list
*/
SMBCSRV * _servers;
/** INTERNAL: open file/dir list
/*
* open file/dir list
*/
SMBCFILE * _files;
/*
* Log to standard error instead of the more typical standard output
*/
BOOL _debug_stderr;
};