diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-30 13:33:17 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-30 13:33:17 +0000 |
commit | 57cf2138522f3dacf26ea30c6f32a800def70209 (patch) | |
tree | 226dcea739dca9fd268fac31afecbcab229b8831 /tcpsyslog.c | |
parent | 61b10104612b3d776399f853f399e64ffe175e65 (diff) | |
download | rsyslog-57cf2138522f3dacf26ea30c6f32a800def70209.tar.gz rsyslog-57cf2138522f3dacf26ea30c6f32a800def70209.tar.xz rsyslog-57cf2138522f3dacf26ea30c6f32a800def70209.zip |
fixed a bug that could cause invalid string handling via strerror_r
varmojfekoj provided the patch - many thanks!
Diffstat (limited to 'tcpsyslog.c')
-rw-r--r-- | tcpsyslog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tcpsyslog.c b/tcpsyslog.c index 80f0d82a..0674f669 100644 --- a/tcpsyslog.c +++ b/tcpsyslog.c @@ -1051,7 +1051,7 @@ int TCPSendCreateSocket(struct addrinfo *addrDest) } else { char errStr[1024]; dbgprintf("create tcp connection failed, reason %s", - strerror_r(errno, errStr, sizeof(errStr))); + rs_strerror_r(errno, errStr, sizeof(errStr))); } } @@ -1062,7 +1062,7 @@ int TCPSendCreateSocket(struct addrinfo *addrDest) } else { char errStr[1024]; - dbgprintf("couldn't create send socket, reason %s", strerror_r(errno, errStr, sizeof(errStr))); + dbgprintf("couldn't create send socket, reason %s", rs_strerror_r(errno, errStr, sizeof(errStr))); } r = r->ai_next; } |