# HG changeset patch # User Jim Meyering # Date 767298647 0 # Node ID 0657a00c38f13290c3361bcd130dc98449b57167 # Parent ca3b7efb9605210dfb19bb10edca38b41d3ef8ba GNU shell utilities diff --git a/lib/getdate.y b/lib/getdate.y --- a/lib/getdate.y +++ b/lib/getdate.y @@ -102,12 +102,6 @@ static int yylex (); static int yyerror (); -#if !defined(lint) && !defined(SABER) -static char RCS[] = - "$Header: str2date.y,v 2.1 90/09/06 08:15:06 cronan Exp $"; -#endif /* !defined(lint) && !defined(SABER) */ - - #define EPOCH 1970 #define HOUR(x) ((time_t)(x) * 60) #define SECSPERDAY (24L * 60L * 60L) @@ -904,7 +898,7 @@ if (! (tm = gmtime (&ftz.time))) return -1; - gmt = *tm; + gmt = *tm; /* Make a copy, in case localtime modifies *tm. */ if (! (tm = localtime (&ftz.time))) return -1;