Buy in changes to fix bug53 - race condition in socket - patch from alfred heisner

This commit is contained in:
mtbishop 2013-07-07 20:21:20 +00:00
parent f3c3e13798
commit 88f8de8214
1 changed files with 2 additions and 1 deletions

3
lib.c
View File

@ -17,7 +17,7 @@
*/ */
/* /*
* $Id: lib.c,v 1.9.2.3 2013/07/07 19:54:56 mtbishop Exp $ * $Id: lib.c,v 1.9.2.4 2013/07/07 20:21:20 mtbishop Exp $
*/ */
#include "config.h" #include "config.h"
@ -360,6 +360,7 @@ void vtun_syslog (int priority, char *format, ...)
va_start(ap, format); va_start(ap, format);
vsnprintf(buf, sizeof(buf)-1, format, ap); vsnprintf(buf, sizeof(buf)-1, format, ap);
syslog(priority, "%s", buf); syslog(priority, "%s", buf);
closelog();
va_end(ap); va_end(ap);
in_syslog = 0; in_syslog = 0;