2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 06:15:55 +00:00

Add a break after the default to satisfy the HP C compiler.

This commit is contained in:
Ted Lemon
2000-01-31 23:41:56 +00:00
parent e55017af5c
commit 9d80b480d5

View File

@@ -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;