From: Todd C. Miller Date: Fri, 3 Oct 2008 20:02:00 +0000 (+0000) Subject: fix typo in non-C89 function declaration X-Git-Tag: SUDO_1_7_0~78 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=55ed6f2c1d0d43d77a13bb7866edd12d43929425;p=sudo fix typo in non-C89 function declaration --- diff --git a/lbuf.c b/lbuf.c index ab5052285..56f835c66 100644 --- a/lbuf.c +++ b/lbuf.c @@ -106,7 +106,7 @@ void #ifdef __STDC__ lbuf_append_quoted(struct lbuf *lbuf, const char *set, ...) #else -lbuf_appen_quotedd(lbuf, va_alist) +lbuf_append_quoted(lbuf, va_alist) struct lbuf *lbuf; const char *set; va_dcl