From 2c04e2178d3ccce17af9d227a165f4025e1baf27 Mon Sep 17 00:00:00 2001
From: marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>
Date: Sun, 30 Apr 2006 01:41:24 +0000
Subject: Remove these ports now that they are in the ports tree.

Next stop, GNOME 2.15.


git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6155 df743ca5-7f9a-e211-a948-0013205c9059
---
 net/gnome-nettool/files/patch-src_utils.c | 20 --------------------
 1 file changed, 20 deletions(-)
 delete mode 100644 net/gnome-nettool/files/patch-src_utils.c

(limited to 'net/gnome-nettool/files/patch-src_utils.c')

diff --git a/net/gnome-nettool/files/patch-src_utils.c b/net/gnome-nettool/files/patch-src_utils.c
deleted file mode 100644
index 921c78049..000000000
--- a/net/gnome-nettool/files/patch-src_utils.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/utils.c.orig	Fri May  6 16:10:28 2005
-+++ src/utils.c	Sun Jul  3 17:48:12 2005
-@@ -24,6 +24,8 @@
-    on GNOME 2.0 */
- 
- #include "utils.h"
-+#include <stdlib.h>
-+#include <limits.h>
- #include <string.h>
- #include <glib/gi18n.h>
- 
-@@ -240,7 +242,7 @@ util_legible_bytes (gchar *bytes)
- 	const gchar *unit = "B";
- 	gchar *result;
- 	
--	sscanf (bytes, "%lld", &rx);
-+	rx = strtoull (bytes, (char **)NULL, 10);
- 	short_rx = rx * 10;  
- 
- 	if (rx > 1125899906842624ull) {
-- 
cgit