From b18a6818a6eb7ebf2792b23300bb639ac0a7f277 Mon Sep 17 00:00:00 2001 From: Brian Somers Date: Sun, 8 Aug 1999 17:36:10 +0000 Subject: [PATCH] Silence a warning about uninitialized variables. --- usr.sbin/ppp/lcp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/ppp/lcp.c b/usr.sbin/ppp/lcp.c index 47e9b14af5a6..ef5a34daca4d 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;