diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-08-21 11:19:17 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-08-21 11:19:17 +0000 |
commit | 9e444fc268bea56922f02ac82a2267b46a9dc360 (patch) | |
tree | c789cbfcc99cafb899b58e59931f6bdad26336c6 /net/xmule/files/patch-src::updownclient.h | |
parent | Um, my bad. Hook up the pkg-message so that it gets displayed when (diff) |
o Update to 1.4.3
o Unmark FORBIDDEN
PR: 55471
Submitted by: Morten Rodal <morten@rodal.no>
Notes
Notes:
svn path=/head/; revision=87441
Diffstat (limited to 'net/xmule/files/patch-src::updownclient.h')
-rw-r--r-- | net/xmule/files/patch-src::updownclient.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/net/xmule/files/patch-src::updownclient.h b/net/xmule/files/patch-src::updownclient.h deleted file mode 100644 index 9891c50e1d6b..000000000000 --- a/net/xmule/files/patch-src::updownclient.h +++ /dev/null @@ -1,24 +0,0 @@ ---- src/updownclient.h.orig Sun May 25 18:27:59 2003 -+++ src/updownclient.h Tue May 27 21:14:31 2003 -@@ -26,12 +26,20 @@ - #include "SafeFile.h" - #include "BarShader.h" - #include "otherfunctions.h" -+#include <sys/time.h> - - class CPartFile; - class CKnownFile; - typedef unsigned char byte; --extern inline long GetTickCount(); - -+inline long GetTickCount() -+{ -+ struct timeval aika; -+ gettimeofday(&aika,NULL); -+ unsigned long secs=aika.tv_sec*1000; -+ secs+=(aika.tv_usec/1000); -+ return secs; -+} - - // uploadstate - #define US_UPLOADING 0 |