aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2008-09-07 07:43:55 +0000
committerChristian Grothoff <christian@grothoff.org>2008-09-07 07:43:55 +0000
commitcd84fba2401d9f9dcb090d0e0f43f827bd18540a (patch)
tree401e13f6518b6029cc12179e5e8eb52f7123a95d
parente73cff1fdd7fdb8f96cc2a72a0cddc53cb9f388e (diff)
downloadlibmicrohttpd-cd84fba2401d9f9dcb090d0e0f43f827bd18540a.tar.gz
libmicrohttpd-cd84fba2401d9f9dcb090d0e0f43f827bd18540a.zip
fixing MAJOR bug in MAX -- Amir, take note
-rw-r--r--src/daemon/https/tls/gnutls_int.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/https/tls/gnutls_int.h b/src/daemon/https/tls/gnutls_int.h
index e8f15924..2ef52933 100644
--- a/src/daemon/https/tls/gnutls_int.h
+++ b/src/daemon/https/tls/gnutls_int.h
@@ -36,7 +36,7 @@
36 */ 36 */
37#define KEYRING_HACK 37#define KEYRING_HACK
38 38
39#define MAX(X,Y) ((X) > (Y) ? (X) : (Y)); 39#define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
40 40
41#define MAX32 4294967295 41#define MAX32 4294967295
42#define MAX24 16777215 42#define MAX24 16777215