diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-22 19:00:05 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-22 19:00:05 +0000 |
commit | b68379b13b9169cf3542d678da6c1c2b4258c49e (patch) | |
tree | 4b2dd4aebe8d834486fb86d5a0853db60337c7d4 /src/common/log.c | |
parent | e5100bc6b5d3d7b004a66358bdf66ae8d3b00084 (diff) | |
download | tor-b68379b13b9169cf3542d678da6c1c2b4258c49e.tar.gz tor-b68379b13b9169cf3542d678da6c1c2b4258c49e.zip |
Add DOCDOC entries for undocumented static and global variables.
svn:r17739
Diffstat (limited to 'src/common/log.c')
-rw-r--r-- | src/common/log.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/log.c b/src/common/log.c index 7406734e28..224b93a467 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -104,6 +104,7 @@ static tor_mutex_t *log_mutex = NULL; /** Linked list of logfile_t. */ static logfile_t *logfiles = NULL; #ifdef HAVE_SYSLOG_H +/* DOCDOC syslog_count */ static int syslog_count = 0; #endif @@ -118,6 +119,7 @@ static int syslog_count = 0; #endif /* What's the lowest log level anybody cares about? */ +/* DOCDOC _log_global_min_severity */ int _log_global_min_severity = LOG_NOTICE; static void delete_log(logfile_t *victim); |