From 28156642773d000dc155f03b3eb59d1787506c14 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Mon, 26 Nov 2007 16:13:36 +0100 Subject: [PATCH] [BUG] relative_pid was not initialized --- src/haproxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/haproxy.c b/src/haproxy.c index bff214227..5a79646ba 100644 --- a/src/haproxy.c +++ b/src/haproxy.c @@ -110,7 +110,7 @@ char *cfg_cfgfile = NULL; /* configuration file */ char *progname = NULL; /* program name */ int pid; /* current process id */ -int relative_pid; /* process id starting at 1 */ +int relative_pid = 1; /* process id starting at 1 */ /* global options */ struct global global = {