summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-04-23 17:31:26 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-04-23 17:31:26 +0200
commit9ec02e670a5fec3d42d567ec593f618dfc9cacb8 (patch)
tree5f804dc30342b60b240d0d3a23e02c0c8670573b /plugins
parentf949f5c037d0b22fd650ab002f195ae58b1d0989 (diff)
downloadrsyslog-9ec02e670a5fec3d42d567ec593f618dfc9cacb8.tar.gz
rsyslog-9ec02e670a5fec3d42d567ec593f618dfc9cacb8.tar.xz
rsyslog-9ec02e670a5fec3d42d567ec593f618dfc9cacb8.zip
cleanup: removed unused but set parameters
Diffstat (limited to 'plugins')
-rw-r--r--plugins/imklog/imklog.c2
-rw-r--r--plugins/omudpspoof/omudpspoof.c3
2 files changed, 1 insertions, 4 deletions
diff --git a/plugins/imklog/imklog.c b/plugins/imklog/imklog.c
index 90b424f3..6a607a74 100644
--- a/plugins/imklog/imklog.c
+++ b/plugins/imklog/imklog.c
@@ -194,11 +194,9 @@ rsRetVal imklogLogIntMsg(int priority, char *fmt, ...)
DEFiRet;
va_list ap;
uchar msgBuf[2048]; /* we use the same size as sysklogd to remain compatible */
- uchar *pLogMsg;
va_start(ap, fmt);
vsnprintf((char*)msgBuf, sizeof(msgBuf) / sizeof(char), fmt, ap);
- pLogMsg = msgBuf;
va_end(ap);
logmsgInternal(NO_ERRCODE ,priority, msgBuf, 0);
diff --git a/plugins/omudpspoof/omudpspoof.c b/plugins/omudpspoof/omudpspoof.c
index 17b73b6d..9a469c16 100644
--- a/plugins/omudpspoof/omudpspoof.c
+++ b/plugins/omudpspoof/omudpspoof.c
@@ -202,7 +202,7 @@ UDPSend(instanceData *pData, uchar *pszSourcename, char *msg, size_t len)
struct addrinfo *r;
int lsent = 0;
int bSendSuccess;
- int j, build_ip;
+ int j;
u_char opt[20];
struct sockaddr_in *tempaddr,source_ip;
libnet_ptag_t ip, ipo;
@@ -238,7 +238,6 @@ UDPSend(instanceData *pData, uchar *pszSourcename, char *msg, size_t len)
DBGPRINTF("Can't build UDP header: %s\n", libnet_geterror(libnet_handle));
}
- build_ip = 0;
/* this is not a legal options string */
for (j = 0; j < 20; j++) {
opt[j] = libnet_get_prand(LIBNET_PR2);