* x-deltat.y (wsnum): Add missing semicolon following YYERROR,
authorTom Yu <tlyu@mit.edu>
Wed, 23 Mar 2005 03:14:10 +0000 (03:14 +0000)
committerTom Yu <tlyu@mit.edu>
Wed, 23 Mar 2005 03:14:10 +0000 (03:14 +0000)
which was preventing bison-1.75 from producing compilable C
output.

ticket: new
version_reported: 1.4
target_version: 1.4.1
tags: pullup

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17140 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/krb/ChangeLog
src/lib/krb5/krb/x-deltat.y

index 00196d676cc6e9c88a5642f4f19c687d06202258..742a5345e59f7ad2bda2add78e7b923244dc0efb 100644 (file)
@@ -1,5 +1,9 @@
 2005-03-22  Tom Yu  <tlyu@mit.edu>
 
+       * x-deltat.y (wsnum): Add missing semicolon following YYERROR,
+       which was preventing bison-1.75 from producing compilable C
+       output.
+
        * gic_keytab.c (krb5_get_init_creds_keytab): When calling
        krb5_get_init_creds() for the second time (with use_master=1),
        also accept KRB5_REALM_UNKNOWN as a soft error, and use the result
index 3082b8a5ffa290c95f3cf25ee3a85b98521238b6..ccd956d102b71cebf9ef022a7bbee3d55cd7dbed 100644 (file)
@@ -138,7 +138,7 @@ posnum: NUM | LONGNUM ;
 num: posnum | '-' posnum { $$ = - $2; } ;
 ws: /* nothing */ | tok_WS ;
 wsnum: ws num { $$ = $2; }
-        | ws OVERFLOW { YYERROR };
+        | ws OVERFLOW { YYERROR; };
 deltat:
          wsnum 'd' opt_hms             { DO ($1,  0,  0, $3); }
        | wsnum 'h' opt_ms              { DO ( 0, $1,  0, $3); }