]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Fix a stupid bug in const_data printer.
authorTed Lemon <source@isc.org>
Fri, 1 Oct 1999 03:18:33 +0000 (03:18 +0000)
committerTed Lemon <source@isc.org>
Fri, 1 Oct 1999 03:18:33 +0000 (03:18 +0000)
common/print.c

index 7cefa48054b44855cb66d2645ed721606441cb10..319824379296ee5f579ea55d3a09b18438352850 100644 (file)
@@ -22,7 +22,7 @@
 
 #ifndef lint
 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 */
 
 #include "dhcpd.h"
@@ -595,7 +595,7 @@ int token_indent_data_string (FILE *file, int col, int indent,
                                           : ""), obuf);
                if (i + 1 != data -> len)
                        col = token_print_indent (file, col, indent,
-                                                 prefix, suffix, obuf);
+                                                 prefix, suffix, ":");
        }
        return col;
 }