aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-02-20 08:47:23 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-02-20 08:47:23 +0000
commita39669198f4b66aca26d5fc2612a6047cf439bb4 (patch)
tree9abce72387717a9ee84363204545800e2d13cff2 /lib/urldata.h
parent2c0c75e3454944ffb7eb3afef9c012c111331678 (diff)
we call the macro CURLMAX() isntead of MAX(), just because it turned up
it collides with another MAX define on some platforms (like netbsd 1.6.1)
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index 9b81e69a6..899e154f6 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -110,10 +110,9 @@
/* Maximum number of dirs supported by libcurl in a FTP dir hierarchy */
#define CURL_MAX_FTP_DIRDEPTH 100
-/* Just a convenience macro to get the larger value out of two given */
-#ifndef MAX
-#define MAX(x,y) ((x)>(y)?(x):(y))
-#endif
+/* Just a convenience macro to get the larger value out of two given.
+ We prefix with CURL to prevent name collisions. */
+#define CURLMAX(x,y) ((x)>(y)?(x):(y))
#ifdef HAVE_KRB4
/* Types needed for krb4-ftp connections */