about summary refs log tree commit diff stats
path: root/src/parsdate.c
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2008-12-08 01:31:28 -0500
committerThomas E. Dickey <dickey@invisible-island.net>2008-12-08 01:31:28 -0500
commitfe7fe1904f61ce9b03d28f34640687d887cca01c (patch)
treed34e27795f9e1ac515c64f2f0e77d63534e60fd8 /src/parsdate.c
parent711a9d1b98ce96d750833e0782afad12c3cfb286 (diff)
downloadlynx-snapshots-fe7fe1904f61ce9b03d28f34640687d887cca01c.tar.gz
snapshot of project "lynx", label v2-8-7dev_10c
Diffstat (limited to 'src/parsdate.c')
-rw-r--r--src/parsdate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/parsdate.c b/src/parsdate.c
index 7fa2ba5e..e95869f5 100644
--- a/src/parsdate.c
+++ b/src/parsdate.c
@@ -33,7 +33,7 @@ static int yygrowstack(void);
 #define YYPREFIX "yy"
 #line 2 "parsdate.y"
 /*
- *  $LynxId: parsdate.c,v 1.3 2008/08/31 16:04:04 tom Exp $
+ *  $LynxId: parsdate.c,v 1.4 2008/09/23 23:13:34 tom Exp $
  *
  *  This module is adapted and extended from tin, to use for LYmktime().
  *
@@ -75,7 +75,7 @@ static int yygrowstack(void);
 
 #define CTYPE(isXXXXX, c)	(((unsigned char)(c) < 128) && isXXXXX(((int)c)))
 
-typedef char	*STRING;
+typedef char	*PD_STRING;
 
 extern int date_parse(void);
 
@@ -727,7 +727,7 @@ LookupWord(
     length++;
 
     /* Drop out any periods. */
-    for (p = buff, q = (STRING)buff; *q; q++)
+    for (p = buff, q = (PD_STRING)buff; *q; q++)
 	if (*q != '.')
 	    *p++ = *q;
     *p = '\0';