gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r7661 - libmicrohttpd/src/daemon/https/tls


From: gnunet
Subject: [GNUnet-SVN] r7661 - libmicrohttpd/src/daemon/https/tls
Date: Sun, 7 Sep 2008 01:43:55 -0600 (MDT)

Author: grothoff
Date: 2008-09-07 01:43:55 -0600 (Sun, 07 Sep 2008)
New Revision: 7661

Modified:
   libmicrohttpd/src/daemon/https/tls/gnutls_int.h
Log:
fixing MAJOR bug in MAX -- Amir, take note

Modified: libmicrohttpd/src/daemon/https/tls/gnutls_int.h
===================================================================
--- libmicrohttpd/src/daemon/https/tls/gnutls_int.h     2008-09-05 17:53:21 UTC 
(rev 7660)
+++ libmicrohttpd/src/daemon/https/tls/gnutls_int.h     2008-09-07 07:43:55 UTC 
(rev 7661)
@@ -36,7 +36,7 @@
  */
 #define KEYRING_HACK
 
-#define MAX(X,Y) ((X) > (Y) ? (X) : (Y));
+#define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
 
 #define MAX32 4294967295
 #define MAX24 16777215





reply via email to

[Prev in Thread] Current Thread [Next in Thread]