diff options
author | tron <tron> | 1999-11-07 22:25:50 +0000 |
---|---|---|
committer | tron <tron> | 1999-11-07 22:25:50 +0000 |
commit | e9203ee16af7993f305ff6600872861a0231fd5e (patch) | |
tree | 6fe09ebcb71cfb9150d45797e79f1530ca316e34 /misc/gnome-pim | |
parent | 0c5097a52692486493d7a7491185659251a7910e (diff) | |
download | pkgsrc-e9203ee16af7993f305ff6600872861a0231fd5e.tar.gz |
Remove obsolete patch file.
Diffstat (limited to 'misc/gnome-pim')
-rw-r--r-- | misc/gnome-pim/patches/patch-ab | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/misc/gnome-pim/patches/patch-ab b/misc/gnome-pim/patches/patch-ab deleted file mode 100644 index 25f3773d5e6..00000000000 --- a/misc/gnome-pim/patches/patch-ab +++ /dev/null @@ -1,27 +0,0 @@ -$NetBSD: patch-ab,v 1.1 1999/09/03 07:25:14 rh Exp $ - ---- gncal/timeutil.c.orig Thu Sep 2 13:32:45 1999 -+++ gncal/timeutil.c Thu Sep 2 13:35:09 1999 -@@ -21,6 +21,12 @@ - if (strlen (str) < 14) - return -1; - -+ (void) time (&t); -+ if (str [15] == 'Z') -+ my_tm = *localtime (&t); -+ else -+ my_tm = *gmtime (&t); -+ - my_tm.tm_year = (digit_at (str, 0) * 1000 + digit_at (str, 1) * 100 + - digit_at (str, 2) * 10 + digit_at (str, 3)) - 1900; - -@@ -33,9 +39,6 @@ - - t = mktime (&my_tm); - -- if (str [15] == 'Z') -- t -= timezone; -- - return t; - } - |