Преглед изворни кода

disarm a trap that's lying in wait for us

svn:r4741
Roger Dingledine пре 20 година
родитељ
комит
f4eec180a2
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      src/common/log.c

+ 2 - 1
src/common/log.c

@@ -307,9 +307,10 @@ static void close_log(logfile_t *victim)
     fclose(victim->file);
   } else if (victim->is_syslog) {
 #ifdef HAVE_SYSLOG_H
-    if (--syslog_count == 0)
+    if (--syslog_count == 0) {
       /* There are no other syslogs; close the logging facility. */
       closelog();
+    }
 #endif
   }
 }