summaryrefslogtreecommitdiff
path: root/net/gnome-nettool/files/patch-src_info.c
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2004-07-06 05:23:00 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2004-07-06 05:23:00 +0000
commitc10f8a540c0d91634b30bc62e65ef24f4aae88eb (patch)
tree7a94ecfec1a02b9efbc8eb93894e8397563bd0f8 /net/gnome-nettool/files/patch-src_info.c
parentChase libraries according to the recent x11-toolkits/fox-devel (diff)
Be a little more sensible when allocating memory to hold the netstat tokens.
Diffstat (limited to 'net/gnome-nettool/files/patch-src_info.c')
-rw-r--r--net/gnome-nettool/files/patch-src_info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/gnome-nettool/files/patch-src_info.c b/net/gnome-nettool/files/patch-src_info.c
index 7b6e43a5fcf4..d5602ae5be80 100644
--- a/net/gnome-nettool/files/patch-src_info.c
+++ b/net/gnome-nettool/files/patch-src_info.c
@@ -1,5 +1,5 @@
--- src/info.c.orig Fri Jun 11 07:14:17 2004
-+++ src/info.c Mon Jul 5 15:25:09 2004
++++ src/info.c Tue Jul 6 01:19:20 2004
@@ -37,6 +37,9 @@
#include <sys/ioctl.h>
#include <stdlib.h>
@@ -132,7 +132,7 @@
compressed, multicast,
tx_bytes, tx_pkt, tx_error, tx_drop, tx_fifo, collissions);
+#elif defined(__FreeBSD__)
-+ tokens = (gchar **) g_malloc0 ((sizeof (char)) * (strlen (line) + 2));
++ tokens = (gchar **) g_malloc0 (sizeof (gchar *) * 12);
+ p = strtok (line, " \t\n");
+ /* We only care about 11 fields for now */
+ for (i = 0; i < 11 && p; i++, p = strtok (NULL, " \t\n")) {