diff options
author | Stef Walter <stef@memberwebs.com> | 2004-08-16 16:13:11 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-08-16 16:13:11 +0000 |
commit | 053f4837d37f564595c8e2de3b608108cbc433b8 (patch) | |
tree | 952d825c1208100965cb75dcde8a19a34eb1a650 | |
parent | 7ffee6694dcbebcf87dbc4430e87e7b401b0b741 (diff) |
Minor comment change
-rw-r--r-- | common/stringx.c | 2 | ||||
-rw-r--r-- | src/util.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/stringx.c b/common/stringx.c index 7ee85ae..f4d9910 100644 --- a/common/stringx.c +++ b/common/stringx.c @@ -90,7 +90,7 @@ static void vmessage(clamsmtp_context_t* ctx, int level, int err, if(err) { /* TODO: strerror_r doesn't want to work for us - strerror(e, m + strlen(m), MAX_MSGLEN); */ + strerror_r(e, m + strlen(m), MAX_MSGLEN); */ strncat(m, strerror(e), len); } @@ -90,7 +90,7 @@ static void vmessage(clamsmtp_context_t* ctx, int level, int err, if(err) { /* TODO: strerror_r doesn't want to work for us - strerror(e, m + strlen(m), MAX_MSGLEN); */ + strerror_r(e, m + strlen(m), MAX_MSGLEN); */ strncat(m, strerror(e), len); } |