about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/HTNews.c
diff options
context:
space:
mode:
Diffstat (limited to 'WWW/Library/Implementation/HTNews.c')
-rw-r--r--WWW/Library/Implementation/HTNews.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTNews.c b/WWW/Library/Implementation/HTNews.c
index 2b0f2bec..6163fdee 100644
--- a/WWW/Library/Implementation/HTNews.c
+++ b/WWW/Library/Implementation/HTNews.c
@@ -358,10 +358,10 @@ static int response(char *command)
  *	template must be already in upper case.
  *	unknown may be in upper or lower or mixed case to match.
  */
-static BOOL match(const char *unknown, const char *template)
+static BOOL match(const char *unknown, const char *ctemplate)
 {
     const char *u = unknown;
-    const char *t = template;
+    const char *t = ctemplate;
 
     for (; *u && *t && (TOUPPER(*u) == *t); u++, t++) ;		/* Find mismatch or end */
     return (BOOL) (*t == 0);	/* OK if end of template */