On 20 Feb 2007, [EMAIL PROTECTED] wrote:

> Yes, I committed some changes to html.[ch] before html_view.c
> etc. were ready for commit. Current SVN should compile fine now.

Index: core/tls_cache.c
===================================================================
--- core/tls_cache.c    (revision 12908)
+++ core/tls_cache.c    (working copy)
@@ -217,6 +217,13 @@
        }
 }

+static gboolean
+tls_cache_item_expired(time_t seen, time_t now)
+{
+       time_delta_t d = delta_time(now, seen);
+       return d < 0 || d > tls_cache_max_time;
+}
+
 gboolean
 tls_cache_lookup(const host_addr_t addr, guint16 port)
 {
@@ -339,13 +346,6 @@
        time_t seen;
 };

-static gboolean
-tls_cache_item_expired(time_t seen, time_t now)
-{
-       time_delta_t d = delta_time(now, seen);
-       return d < 0 || d > tls_cache_max_time;
-}
-
 static void
 tls_cache_remove_oldest(void)
 {


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Gtk-gnutella-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtk-gnutella-devel

Reply via email to