From: Simon Ruderich Date: Tue, 22 Mar 2011 16:09:15 +0000 (+0100) Subject: src/tlsproxy.c: Initialize done with 0 for clarity. X-Git-Tag: 0.2~4 X-Git-Url: https://ruderich.org/simon/gitweb/?p=tlsproxy%2Ftlsproxy.git;a=commitdiff_plain;h=a6880da1a7e80f74bed1caf0d2ed6e9034ea2245 src/tlsproxy.c: Initialize done with 0 for clarity. --- diff --git a/src/tlsproxy.c b/src/tlsproxy.c index d2b4506..625ed08 100644 --- a/src/tlsproxy.c +++ b/src/tlsproxy.c @@ -59,7 +59,7 @@ GCRY_THREAD_OPTION_PTHREAD_IMPL; /* Server should shut down. Set by SIGINT handler. */ -static volatile int done; +static volatile int done = 0; /* Number of threads. */ static size_t thread_count;