diff options
author | Martin Carpenter <mcarpenter@free.fr> | 2013-03-27 12:07:33 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-04-10 08:56:40 +0200 |
commit | e523107a96f569825879d5713ed4c5a56180eb2f (patch) | |
tree | cbbded3415eeb6063519e9b35016a60d2bf2e57e | |
parent | d27e726d6b0e071fc9077e18a795025b3571e032 (diff) | |
download | rsyslog-e523107a96f569825879d5713ed4c5a56180eb2f.tar.gz rsyslog-e523107a96f569825879d5713ed4c5a56180eb2f.tar.bz2 rsyslog-e523107a96f569825879d5713ed4c5a56180eb2f.zip |
Update u_int8_t to uint8_t
-rw-r--r-- | plugins/omudpspoof/omudpspoof.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/omudpspoof/omudpspoof.c b/plugins/omudpspoof/omudpspoof.c index 4f37fd8c..9c4c80ba 100644 --- a/plugins/omudpspoof/omudpspoof.c +++ b/plugins/omudpspoof/omudpspoof.c @@ -481,7 +481,7 @@ UDPSend(instanceData *pData, uchar *pszSourcename, char *msg, size_t len) 0, /* checksum */ source_ip.sin_addr.s_addr, tempaddr->sin_addr.s_addr, - (u_int8_t*)(msg+msgOffs), /* payload */ + (uint8_t*)(msg+msgOffs), /* payload */ pktLen, /* payload size */ pData->libnet_handle, /* libnet handle */ ip); /* libnet id */ |