blob: 2e7d00f4828bccee595b46a2db8b3832bf7362aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- src/main.c 2000/12/12 10:59:00 1.1
+++ src/main.c 2000/12/12 11:00:32
@@ -208,7 +208,7 @@
g_free(thing);
continue;
}
- if ((thing->frequency = (time_t) strtoull(skunk, NULL, 10)) ==
+ if ((thing->frequency = (time_t) strtoul(skunk, NULL, 10)) ==
(time_t) 0ULL) {
g_warning(_("Corrupted database : null frequency\n"));
g_free(thing);
@@ -219,7 +219,7 @@
g_free(thing);
continue;
}
- thing->last = (time_t) strtoull(skunk, NULL, 10);
+ thing->last = (time_t) strtoul(skunk, NULL, 10);
if ((skunk = strtok(NULL, DBSEP)) == NULL) {
g_warning(_("Corrupted database : wrong line format\n"));
g_free(thing);
|