004-07-13  David Wiggins <dwiggins@bbn.com

	* kernel_socket.c (rtm_flag_dump): terminate buffer with '\0', not '0'.


This is arguably not a security problem, since strlcat is used to copy
to the buffer -gdt.
diff --git a/zebra/ChangeLog b/zebra/ChangeLog
index acf2f8c..5a0ff8c 100644
--- a/zebra/ChangeLog
+++ b/zebra/ChangeLog
@@ -1,3 +1,7 @@
+2004-07-13  David Wiggins <dwiggins@bbn.com
+
+	* kernel_socket.c (rtm_flag_dump): terminate buffer with '\0', not '0'.
+
 2004-07-13 Hasso Tepper <hasso@estpak.ee>
 
 	* irdp_main.c: Add privilege change.
diff --git a/zebra/kernel_socket.c b/zebra/kernel_socket.c
index 20c6cc8..27b8895 100644
--- a/zebra/kernel_socket.c
+++ b/zebra/kernel_socket.c
@@ -178,7 +178,7 @@
   struct message *mes;
   static char buf[BUFSIZ];
 
-  buf[0] = '0';
+  buf[0] = '\0';
   for (mes = rtm_flag_str; mes->key != 0; mes++)
     {
       if (mes->key & flag)