From: Ted Lemon Date: Mon, 31 Jan 2000 23:41:56 +0000 (+0000) Subject: Add a break after the default to satisfy the HP C compiler. X-Git-Tag: V3-BETA-2-PATCH-1~371 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d80b480d588660878be9cb96e523673e27c41ef;p=thirdparty%2Fdhcp.git Add a break after the default to satisfy the HP C compiler. --- diff --git a/server/confpars.c b/server/confpars.c index b2f6dd497..2d01edd4b 100644 --- a/server/confpars.c +++ b/server/confpars.c @@ -22,7 +22,7 @@ #ifndef lint static char copyright[] = -"$Id: confpars.c,v 1.98 2000/01/26 17:29:35 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; +"$Id: confpars.c,v 1.99 2000/01/31 23:41:56 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -1982,6 +1982,7 @@ struct lease *parse_lease_declaration (cfile) break; default: /* for gcc, we'll never get here. */ + break; } break;