From b431c07559262452e470ed4f6be4c6ee497390b9 Mon Sep 17 00:00:00 2001 From: brian Date: Sun, 8 Aug 1999 17:36:10 +0000 Subject: Silence a warning about uninitialized variables. --- usr.sbin/ppp/lcp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/ppp/lcp.c') diff --git a/usr.sbin/ppp/lcp.c b/usr.sbin/ppp/lcp.c index 47e9b14..ef5a34d 100644 --- a/usr.sbin/ppp/lcp.c +++ b/usr.sbin/ppp/lcp.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: lcp.c,v 1.76 1999/06/09 16:54:03 brian Exp $ + * $Id: lcp.c,v 1.77 1999/06/09 20:27:26 brian Exp $ * */ @@ -540,7 +540,7 @@ LcpDecodeConfig(struct fsm *fp, u_char *cp, int plen, int mode_type, struct mp *mp; struct physical *p = link2physical(fp->link); - callback_req = 0; + sz = op = callback_req = 0; while (plen >= sizeof(struct fsmconfig)) { type = *cp; -- cgit v1.1