diff options
author | Derrell Lipman <derrell@samba.org> | 2005-12-29 16:26:06 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:59 -0500 |
commit | e13d0cb3ec89d83db8893341ca7ae24c07aad1fb (patch) | |
tree | d99483ec3e0f3cf2514b184eed2f7199fd05f1af /source3/include | |
parent | 7919fd0ec80e680d848dd6157b6a5d14fc42e9b6 (diff) | |
download | samba-e13d0cb3ec89d83db8893341ca7ae24c07aad1fb.tar.gz samba-e13d0cb3ec89d83db8893341ca7ae24c07aad1fb.tar.bz2 samba-e13d0cb3ec89d83db8893341ca7ae24c07aad1fb.zip |
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 used to be commit 4182eb99af5b343291a661a87d08edd91fd09a7a)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/libsmb_internal.h | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/source3/include/libsmb_internal.h b/source3/include/libsmb_internal.h index 081bb415e5..0426430328 100644 --- a/source3/include/libsmb_internal.h +++ b/source3/include/libsmb_internal.h @@ -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; }; |