From: Todd C. Miller Date: Sun, 14 Aug 2011 19:58:21 +0000 (-0400) Subject: Fix cut & pasto in K&R lbuf_append function declaration X-Git-Tag: SUDO_1_7_7~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2e5c0a450dbf7e6a244249a3c133d73375ffdffa;p=sudo Fix cut & pasto in K&R lbuf_append function declaration --HG-- branch : 1.7 --- diff --git a/lbuf.c b/lbuf.c index 42db57cc8..7a7fc5a8b 100644 --- a/lbuf.c +++ b/lbuf.c @@ -174,7 +174,7 @@ void #ifdef __STDC__ lbuf_append(struct lbuf *lbuf, const char *fmt, ...) #else -lbuf_append_quoted(lbuf, fmt, va_alist) +lbuf_append(lbuf, fmt, va_alist) struct lbuf *lbuf; const char *fmt; va_dcl