freebsd-ports/misc/bidwatcher/files/patch-aa
Matthew Hunt 3a9510e28a Upgrade to 1.3.5.
Add provision to circumvent the five minute "fudge factor" on snipe
timers.

Submitted by:	Bruce Burden <brucegb@realtime.net>
2002-09-17 16:56:48 +00:00

16 lines
561 B
Text

--- bidwatcher.cpp.orig Tue Sep 17 09:42:59 2002
+++ bidwatcher.cpp Tue Sep 17 09:44:43 2002
@@ -4006,8 +4006,12 @@
// ebay is GMT+8hrs, but add a 5 minute fudge so that we bid
// early to be safe
+
+ // In the era of accurate timekeeping, it's not clear that this is
+ // necessary, so we allow TIMEFUDGE to be set when building the
+ // FreeBSD port. -mph
- timeDiff += 5*60;
+ timeDiff += TIMEFUDGE;
showError("WARNING: Couldn't reach eBay, using local clock."
" Do not depend on times or sniping.");