aboutsummaryrefslogtreecommitdiff
path: root/src/url.h
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2007-11-17 14:47:41 +0100
committerjcid <devnull@localhost>2007-11-17 14:47:41 +0100
commitdfd741a2a60c8013cf96666bb9f24408b863790e (patch)
tree3cd8aac285423bec9f37daaef318b0544b1211be /src/url.h
parent1a09cec70152b4836a20cd8a0d914f62b290fae2 (diff)
- s/camp/field/ s/CAMP/FIELD/
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