summaryrefslogtreecommitdiffstats
path: root/net/gnomenettool/files/patch-src_utils.c
diff options
context:
space:
mode:
authorahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2005-11-06 12:00:57 +0800
committerahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2005-11-06 12:00:57 +0800
commit7b685f16677180dc454bba7d482c7e7818df45a6 (patch)
tree006be96311d7f42985a69e89d49b28375166eb43 /net/gnomenettool/files/patch-src_utils.c
parentca421beca82af07bcd00b3f6405efe1d85764949 (diff)
downloadmarcuscom-ports-7b685f16677180dc454bba7d482c7e7818df45a6.tar.gz
marcuscom-ports-7b685f16677180dc454bba7d482c7e7818df45a6.tar.zst
marcuscom-ports-7b685f16677180dc454bba7d482c7e7818df45a6.zip
- Clean net
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5053 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'net/gnomenettool/files/patch-src_utils.c')
-rw-r--r--net/gnomenettool/files/patch-src_utils.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/net/gnomenettool/files/patch-src_utils.c b/net/gnomenettool/files/patch-src_utils.c
deleted file mode 100644
index 921c78049..000000000
--- a/net/gnomenettool/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) {