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
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
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); }