aboutsummaryrefslogtreecommitdiff
path: root/src/url.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/url.h')
-rw-r--r--src/url.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/url.h b/src/url.h
index 5f331881..1781c802 100644
--- a/src/url.h
+++ b/src/url.h
@@ -87,10 +87,10 @@
#define URL_ILLEGAL_CHARS_SPC(u) URL_ILLEGAL_CHARS_SPC_(u)
-/* URL-camp compare methods */
-#define URL_STRCAMP_CMP(s1,s2) \
+/* URL-field compare methods */
+#define URL_STR_FIELD_CMP(s1,s2) \
(s1) && (s2) ? strcmp(s1,s2) : !(s1) && !(s2) ? 0 : (s1) ? 1 : -1
-#define URL_STRCAMP_I_CMP(s1,s2) \
+#define URL_STR_FIELD_I_CMP(s1,s2) \
(s1) && (s2) ? dStrcasecmp(s1,s2) : !(s1) && !(s2) ? 0 : (s1) ? 1 : -1