2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-29 13:28:14 +00:00

Add a missing else whose absence was causing memory smashes.

This commit is contained in:
Ted Lemon 2001-03-20 07:26:57 +00:00
parent c73ced691d
commit b0b4f89c39

View File

@ -43,7 +43,7 @@
#ifndef lint #ifndef lint
static char copyright[] = static char copyright[] =
"$Id: print.c,v 1.50 2001/03/15 23:17:28 mellon Exp $ Copyright (c) 1995, 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; "$Id: print.c,v 1.51 2001/03/20 07:26:57 mellon Exp $ Copyright (c) 1995-2001 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */ #endif /* not lint */
#include "dhcpd.h" #include "dhcpd.h"
@ -110,7 +110,7 @@ char *quotify_buf (const unsigned char *s, unsigned len,
for (i = 0; i < len; i++) { for (i = 0; i < len; i++) {
if (s [i] == ' ') if (s [i] == ' ')
*nsp++ = ' '; *nsp++ = ' ';
if (!isascii (s [i]) || !isprint (s [i])) { else if (!isascii (s [i]) || !isprint (s [i])) {
sprintf (nsp, "\\%3.3o", s [i]); sprintf (nsp, "\\%3.3o", s [i]);
nsp += 4; nsp += 4;
} else if (s [i] == '"' || s [i] == '\\') { } else if (s [i] == '"' || s [i] == '\\') {