diff options
author | brian <brian@FreeBSD.org> | 1999-08-08 17:36:10 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1999-08-08 17:36:10 +0000 |
commit | b431c07559262452e470ed4f6be4c6ee497390b9 (patch) | |
tree | 26413982ab86d9e5f5fc752caee362b749ebddd2 /usr.sbin | |
parent | b1b2d4a0a7044054f2141f6fd9b0f03fc93ce622 (diff) | |
download | FreeBSD-src-b431c07559262452e470ed4f6be4c6ee497390b9.zip FreeBSD-src-b431c07559262452e470ed4f6be4c6ee497390b9.tar.gz |
Silence a warning about uninitialized variables.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ppp/lcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |