summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c
index 7ee85ae..f4d9910 100644
--- a/src/util.c
+++ b/src/util.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);
}