$NetBSD: patch-dg,v 1.1 2002/03/07 07:41:40 jmc Exp $ --- pppd/utils.c.orig Thu Mar 7 07:35:26 2002 +++ pppd/utils.c Thu Mar 7 07:36:39 2002 @@ -252,8 +252,10 @@ #ifndef __powerpc__ n = vslprintf(buf, buflen + 1, f, va_arg(args, va_list)); #else +#ifndef __NetBSD__ /* On the powerpc, a va_list is an array of 1 structure */ n = vslprintf(buf, buflen + 1, f, va_arg(args, void *)); +#endif #endif buf += n; buflen -= n;