From 5647a1ac469966263493291e9ec4dae755ca08e1 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Mon, 2 Mar 2015 14:42:17 -0700 Subject: [PATCH] Make comment match code. --- lib/util/strlcat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util/strlcat.c b/lib/util/strlcat.c index d3542a6b8..86dc51567 100644 --- a/lib/util/strlcat.c +++ b/lib/util/strlcat.c @@ -31,7 +31,7 @@ * full size of dst, not space left). At most dsize-1 characters * will be copied. Always NUL terminates (unless dsize <= strlen(dst)). * Returns strlen(src) + MIN(dsize, strlen(initial dst)). - * If retval >= siz, truncation occurred. + * If retval >= dsize, truncation occurred. */ size_t sudo_strlcat(char *dst, const char *src, size_t dsize) -- 2.40.0