2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-29 21:38:10 +00:00

Fix a stupid bug in const_data printer.

This commit is contained in:
Ted Lemon 1999-10-01 03:18:33 +00:00
parent 4615d4981c
commit df1ea41160

View File

@ -22,7 +22,7 @@
#ifndef lint #ifndef lint
static char copyright[] = static char copyright[] =
"$Id: print.c,v 1.25 1999/09/22 17:25:27 mellon Exp $ Copyright (c) 1995, 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; "$Id: print.c,v 1.26 1999/10/01 03:18:33 mellon Exp $ Copyright (c) 1995, 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */ #endif /* not lint */
#include "dhcpd.h" #include "dhcpd.h"
@ -595,7 +595,7 @@ int token_indent_data_string (FILE *file, int col, int indent,
: ""), obuf); : ""), obuf);
if (i + 1 != data -> len) if (i + 1 != data -> len)
col = token_print_indent (file, col, indent, col = token_print_indent (file, col, indent,
prefix, suffix, obuf); prefix, suffix, ":");
} }
return col; return col;
} }