summaryrefslogtreecommitdiff
path: root/comms/fidogate/patches/patch-am
diff options
context:
space:
mode:
Diffstat (limited to 'comms/fidogate/patches/patch-am')
-rw-r--r--comms/fidogate/patches/patch-am19
1 files changed, 11 insertions, 8 deletions
diff --git a/comms/fidogate/patches/patch-am b/comms/fidogate/patches/patch-am
index 4c21201c1e6..9f6da46611f 100644
--- a/comms/fidogate/patches/patch-am
+++ b/comms/fidogate/patches/patch-am
@@ -1,17 +1,18 @@
-$NetBSD: patch-am,v 1.4 2001/03/19 13:23:36 dmcmahill Exp $
+$NetBSD: patch-am,v 1.5 2004/08/23 15:18:02 tv Exp $
-alpha fixes...
-
---- src/common/tick.c.orig Fri Jan 28 17:01:11 2000
-+++ src/common/tick.c Mon Mar 19 07:47:47 2001
-@@ -121,5 +121,5 @@
+--- src/common/tick.c.orig 2003-02-16 10:38:58.000000000 -0500
++++ src/common/tick.c
+@@ -120,7 +120,7 @@ int tick_put(Tick *tic, char *name)
+ fprintf(fp, "CRC %08lX\r\n", tic->crc);
fprintf(fp, "Created %s\r\n", tic->created);
fprintf(fp, "Size %lu\r\n", tic->size);
- fprintf(fp, "Date %ld\r\n", tic->date);
+ fprintf(fp, "Date %ld\r\n", (long) tic->date);
for(pl=tic->path.first; pl; pl=pl->next)
fprintf(fp, "Path %s\r\n", pl->line);
-@@ -279,6 +279,6 @@
+ for(p=tic->seenby.first; p; p=p->next)
+@@ -278,8 +278,8 @@ void tick_debug(Tick *tic, int lvl)
+ for(p=tic->seenby.first; p; p=p->next)
debug(lvl, "Seenby : %s", znfp1(&p->node));
debug(lvl, "Pw : %s", tic->pw);
- debug(lvl, "Release : %ld", tic->release);
@@ -20,7 +21,9 @@ alpha fixes...
+ debug(lvl, "Date : %ld", (long) tic->date);
for(pl=tic->app.first; pl; pl=pl->next)
debug(lvl, "App : %s", pl->line);
-@@ -368,5 +368,5 @@
+ }
+@@ -367,6 +367,6 @@ void tick_add_path(Tick *tic)
+
now = time(NULL);
tl_appendf(&tic->path, "%s %ld %s",
- znf1(cf_addr()), now, date(DATE_TICK_PATH, &now));