about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/SGML.c
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>1999-05-17 03:16:27 -0400
committerThomas E. Dickey <dickey@invisible-island.net>1999-05-17 03:16:27 -0400
commitc7742b57ba05ecb66932512320e2a7e8adaf11c5 (patch)
tree40e16d43812ccf88ff22ce4d6aaea9ea45b97275 /WWW/Library/Implementation/SGML.c
parent0bafa3a38906a8ffc183d758baa774d8b23a9fa4 (diff)
downloadlynx-snapshots-c7742b57ba05ecb66932512320e2a7e8adaf11c5.tar.gz
snapshot of project "lynx", label v2-8-2pre_4
Diffstat (limited to 'WWW/Library/Implementation/SGML.c')
-rw-r--r--WWW/Library/Implementation/SGML.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/WWW/Library/Implementation/SGML.c b/WWW/Library/Implementation/SGML.c
index 8b1d30c2..b219ad0b 100644
--- a/WWW/Library/Implementation/SGML.c
+++ b/WWW/Library/Implementation/SGML.c
@@ -1215,7 +1215,7 @@ PUBLIC HTTag * SGMLFindTag ARGS2(
 	 high > low;
 	 diff < 0 ? (low = i+1) : (high = i)) {	 /* Binary search */
 	i = (low + (high-low)/2);
-	diff = strcasecomp(dtd->tags[i].name, string);	/* Case insensitive */
+	diff = AS_casecomp(dtd->tags[i].name, string);	/* Case insensitive */
 	if (diff == 0) {		/* success: found it */
 	    return &dtd->tags[i];
 	}