From 816ab51f4b81bccc4b8408dfec311d9168269818 Mon Sep 17 00:00:00 2001 From: Tomas Heinrich Date: Mon, 9 May 2011 12:24:14 +0200 Subject: bugfix: stream driver mode was not correctly set on tcp ouput on big endian systems. Signed-off-by: Rainer Gerhards --- tools/omfwd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/omfwd.c') diff --git a/tools/omfwd.c b/tools/omfwd.c index 96b365a0..16d438f6 100644 --- a/tools/omfwd.c +++ b/tools/omfwd.c @@ -101,7 +101,7 @@ typedef struct _instanceData { /* config data */ static uchar *pszTplName = NULL; /* name of the default template to use */ static uchar *pszStrmDrvr = NULL; /* name of the stream driver to use */ -static short iStrmDrvrMode = 0; /* mode for stream driver, driver-dependent (0 mostly means plain tcp) */ +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 uchar *pszStrmDrvrAuthMode = NULL; /* authentication mode to use */ static int iUDPRebindInterval = 0; /* support for automatic re-binding (load balancers!). 0 - no rebind */ -- cgit From 831ce25230f6c8cd7c362fda3616e1233a61cf00 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 9 May 2011 12:29:07 +0200 Subject: bugfix: invalid storage type for config variables --- tools/omfwd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/omfwd.c') 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 */ -- cgit