From 8eecc07db54f3714de68a37a4cc3d2eaa5d54e8e Mon Sep 17 00:00:00 2001 From: "Patrick S. Gardella" Date: Tue, 5 Nov 2002 19:14:30 +0000 Subject: Create port for xlog, an amateur radio logging app --- comms/xlog/files/patch-ac | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 comms/xlog/files/patch-ac (limited to 'comms/xlog/files/patch-ac') diff --git a/comms/xlog/files/patch-ac b/comms/xlog/files/patch-ac new file mode 100644 index 000000000000..e85d597356db --- /dev/null +++ b/comms/xlog/files/patch-ac @@ -0,0 +1,20 @@ +--- src/utils.c.orig Tue Nov 5 11:22:20 2002 ++++ src/utils.c Tue Nov 5 11:23:06 2002 +@@ -284,7 +284,7 @@ + + str = g_new0(gchar, 100); + +- fr = atoll(arg); ++ fr = strtoll(arg, (char **)NULL, 10); + + if (fr > 1325) /* no dot */ + { +@@ -295,7 +295,7 @@ + str[strlen(str) - 6] = '\0'; + else if (strlen(str) > 3) + str[strlen(str) - 3] = '\0'; +- fr = atoll(str); ++ fr = strtoll(str, (char **)NULL, 10); + } + + switch (fr) -- cgit v1.2.3