X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Futils.c;h=44f2e73407c50d5fc89473dfe174be9323527185;hb=4abe4296f0eddbb2b6ff11dbbd27100156c85f87;hp=31f9b52356b20e5fd68bbefb72393df3992d662c;hpb=e5b7cafa28aeba66499fa26b286192529e5fde15;p=ppp.git diff --git a/pppd/utils.c b/pppd/utils.c index 31f9b52..44f2e73 100644 --- a/pppd/utils.c +++ b/pppd/utils.c @@ -10,16 +10,11 @@ * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. The name(s) of the authors of this software must not be used to + * 2. The name(s) of the authors of this software must not be used to * endorse or promote products derived from this software without * prior written permission. * - * 4. Redistributions of any form whatsoever must retain the following + * 3. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by Paul Mackerras * ". @@ -33,7 +28,7 @@ * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#define RCSID "$Id: utils.c,v 1.22 2003/04/07 00:01:46 paulus Exp $" +#define RCSID "$Id: utils.c,v 1.24 2004/11/04 10:02:26 paulus Exp $" #include #include @@ -123,7 +118,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 +287,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 +299,7 @@ vslprintf(buf, buflen, fmt, args) buf += n; buflen -= n; continue; +#endif case 't': time(&t); str = ctime(&t);