X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Futils.c;h=1033f9d3702df418fcb8f0acf694917e1a7bcfed;hb=4a26b4d029d3dfc51b5fc3926060ce7a67ee72f0;hp=fb2c6aa20b05af1cfb9be9c27b3d8f3520c87a55;hpb=d524a1339c6016f60dcebdddc7536f510a558ada;p=ppp.git diff --git a/pppd/utils.c b/pppd/utils.c index fb2c6aa..1033f9d 100644 --- a/pppd/utils.c +++ b/pppd/utils.c @@ -33,7 +33,7 @@ * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#define RCSID "$Id: utils.c,v 1.21 2003/03/30 08:26:56 paulus Exp $" +#define RCSID "$Id: utils.c,v 1.23 2004/01/13 04:13:08 paulus Exp $" #include #include @@ -123,7 +123,7 @@ strlcat(dest, src, len) /* * slprintf - format a message into a buffer. Like sprintf except we * also specify the length of the output buffer, and we handle - * %r (recursive format), %m (error message), %v (visible string), + * %m (error message), %v (visible string), * %q (quoted string), %t (current time) and %I (IP address) formats. * Doesn't do floating-point formats. * Returns the number of chars put into buf. @@ -292,6 +292,7 @@ vslprintf(buf, buflen, fmt, args) (ip >> 16) & 0xff, (ip >> 8) & 0xff, ip & 0xff); str = num; break; +#if 0 /* not used, and breaks on S/390, apparently */ case 'r': f = va_arg(args, char *); #ifndef __powerpc__ @@ -303,6 +304,7 @@ vslprintf(buf, buflen, fmt, args) buf += n; buflen -= n; continue; +#endif case 't': time(&t); str = ctime(&t); @@ -720,6 +722,7 @@ error __V((char *fmt, ...)) logit(LOG_ERR, fmt, pvar); va_end(pvar); + ++error_count; } /*