summaryrefslogtreecommitdiff
path: root/common/stringx.c
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2004-08-16 16:13:11 +0000
committerStef Walter <stef@memberwebs.com>2004-08-16 16:13:11 +0000
commitedfe2ad132410685086785a9527af825714cb988 (patch)
treefe1fa5ea6bd857f2848755f4f22f00da7460e55c /common/stringx.c
parent1451a338c6fa44881d05715f3276c93e3514ca23 (diff)
Minor comment change
Diffstat (limited to 'common/stringx.c')
-rw-r--r--common/stringx.c2
1 files changed, 1 insertions, 1 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);
}