aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/extconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/extconf.c b/utils/extconf.c
index c5b9fbdea..5d4b21eac 100644
--- a/utils/extconf.c
+++ b/utils/extconf.c
@@ -476,7 +476,7 @@ static void CB_ADD_LEN(char *str, int len)
return;
comment_buffer_size += CB_INCR+len+1;
}
- strncat(comment_buffer,str,len);
+ strncat(comment_buffer,str,len); /* safe */
comment_buffer[cbl+len-1] = 0;
}