From: Todd C. Miller Date: Tue, 14 Feb 2017 20:19:45 +0000 (-0700) Subject: fix typo that prevented compilation on FreeBSD X-Git-Tag: SUDO_1_8_20^2~116 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=47b82acd78aba1284c37989ca835089080a98b26;p=sudo fix typo that prevented compilation on FreeBSD --- diff --git a/lib/util/strtoid.c b/lib/util/strtoid.c index 34f732a7b..125ba93bc 100644 --- a/lib/util/strtoid.c +++ b/lib/util/strtoid.c @@ -80,7 +80,7 @@ sudo_strtoid_v1(const char *p, const char *sep, char **endp, const char **errstr } if (errno == ERANGE) { if (errstr != NULL) { - if (llval == LLONG_MAX)) { + if (llval == LLONG_MAX) *errstr = N_("value too large"); else *errstr = N_("value too small");