summaryrefslogtreecommitdiffstats
path: root/tools/omfwd.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-05-09 12:29:07 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2011-05-09 12:29:07 +0200
commit831ce25230f6c8cd7c362fda3616e1233a61cf00 (patch)
treeb8bf89cc0f0c9e1d2ee8514d7e1f6fec1b6d08f8 /tools/omfwd.c
parent816ab51f4b81bccc4b8408dfec311d9168269818 (diff)
downloadrsyslog-831ce25230f6c8cd7c362fda3616e1233a61cf00.tar.gz
rsyslog-831ce25230f6c8cd7c362fda3616e1233a61cf00.tar.xz
rsyslog-831ce25230f6c8cd7c362fda3616e1233a61cf00.zip
bugfix: invalid storage type for config variables
Diffstat (limited to 'tools/omfwd.c')
-rw-r--r--tools/omfwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/omfwd.c b/tools/omfwd.c
index 16d438f6..aadeec6a 100644
--- a/tools/omfwd.c
+++ b/tools/omfwd.c
@@ -102,7 +102,7 @@ typedef struct _instanceData {
static uchar *pszTplName = NULL; /* name of the default template to use */
static uchar *pszStrmDrvr = NULL; /* name of the stream driver to use */
static int iStrmDrvrMode = 0; /* mode for stream driver, driver-dependent (0 mostly means plain tcp) */
-static short bResendLastOnRecon = 0; /* should the last message be re-sent on a successful reconnect? */
+static int bResendLastOnRecon = 0; /* should the last message be re-sent on a successful reconnect? */
static uchar *pszStrmDrvrAuthMode = NULL; /* authentication mode to use */
static int iUDPRebindInterval = 0; /* support for automatic re-binding (load balancers!). 0 - no rebind */
static int iTCPRebindInterval = 0; /* support for automatic re-binding (load balancers!). 0 - no rebind */