diff options
author | hans <hans@pkgsrc.org> | 2011-11-30 23:48:18 +0000 |
---|---|---|
committer | hans <hans@pkgsrc.org> | 2011-11-30 23:48:18 +0000 |
commit | 7903b2358d616bd14764a0c3f46fdfcf0209e3a1 (patch) | |
tree | 82042fe505ea710a0f5bf4c09a767b66c9642333 | |
parent | 441378074f135b0ebe09bd4ddf68a5fe8259766e (diff) | |
download | pkgsrc-7903b2358d616bd14764a0c3f46fdfcf0209e3a1.tar.gz |
Fix previous fix.
-rw-r--r-- | comms/libopensync/distinfo | 4 | ||||
-rw-r--r-- | comms/libopensync/patches/patch-ad | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/comms/libopensync/distinfo b/comms/libopensync/distinfo index 855b5e61f1d..bfcd05946c3 100644 --- a/comms/libopensync/distinfo +++ b/comms/libopensync/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.6 2011/11/29 15:12:07 hans Exp $ +$NetBSD: distinfo,v 1.7 2011/11/30 23:48:18 hans Exp $ SHA1 (libopensync-0.22.tar.bz2) = 47860a8c6621aa89fbff2af2517787747af7cc30 RMD160 (libopensync-0.22.tar.bz2) = a1e9715d037a7c474b80d609e6c96a24cbb6692f @@ -6,7 +6,7 @@ Size (libopensync-0.22.tar.bz2) = 489978 bytes SHA1 (patch-aa) = 4bcf03611850719042bafd794fc413cef159a702 SHA1 (patch-ab) = 057f995d58c98eba96e22671d9c8ee0ec8270b3e SHA1 (patch-ac) = f6a8c12e9344a7f68439b06f8797bfa30106d0e3 -SHA1 (patch-ad) = a9ea7b8d4774fac2a237090b4e7768cf5ec5da27 +SHA1 (patch-ad) = d2a199b04788512378dbd5024b34d367da6add5d SHA1 (patch-ae) = 39b5cf27a5b1722f5d8550b97deb1a8763a4ace1 SHA1 (patch-af) = 07666352a1cd68ae00b10fc5eefeb8001673abe7 SHA1 (patch-opensync_opensync_time.c) = cb6cf27e1ba3fcd6a0cb139759d4da7306817e10 diff --git a/comms/libopensync/patches/patch-ad b/comms/libopensync/patches/patch-ad index e3d44fac71b..c8fc5ffd197 100644 --- a/comms/libopensync/patches/patch-ad +++ b/comms/libopensync/patches/patch-ad @@ -1,17 +1,18 @@ -$NetBSD: patch-ad,v 1.2 2011/11/29 15:12:08 hans Exp $ +$NetBSD: patch-ad,v 1.3 2011/11/30 23:48:18 hans Exp $ --- tools/osynctest.c.orig 2007-03-27 20:49:19.000000000 +0900 +++ tools/osynctest.c -@@ -81,8 +81,6 @@ double writetime; +@@ -81,8 +81,7 @@ double writetime; double _second() /* note that some compilers like AIX xlf do not require the trailing '_' */ { struct timeval tp; - int rtn; - rtn=gettimeofday(&tp, NULL); ++ gettimeofday(&tp, NULL); return ((double)tp.tv_sec+(1.e-6)*tp.tv_usec); } -@@ -212,7 +210,7 @@ void modify_data(OSyncMember *member, co +@@ -212,7 +211,7 @@ void modify_data(OSyncMember *member, co const char *de = NULL; while ((de = g_dir_read_name(dir))) { |