diff options
| author | Tom Yu <tlyu@mit.edu> | 2005-03-23 03:14:10 +0000 |
|---|---|---|
| committer | Tom Yu <tlyu@mit.edu> | 2005-03-23 03:14:10 +0000 |
| commit | b30baddf86e419bdda09a6c72c4d1cc2822b31e3 (patch) | |
| tree | 1bd6c0bd889ff6636552326b5493847d077ab910 /src | |
| parent | f28c47c0e6d004b3a10aa93fe5a472a6b4a034b1 (diff) | |
| download | krb5-b30baddf86e419bdda09a6c72c4d1cc2822b31e3.tar.gz krb5-b30baddf86e419bdda09a6c72c4d1cc2822b31e3.tar.xz krb5-b30baddf86e419bdda09a6c72c4d1cc2822b31e3.zip | |
* x-deltat.y (wsnum): Add missing semicolon following YYERROR,
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
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/krb5/krb/ChangeLog | 4 | ||||
| -rw-r--r-- | src/lib/krb5/krb/x-deltat.y | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/krb5/krb/ChangeLog b/src/lib/krb5/krb/ChangeLog index 00196d676..742a5345e 100644 --- a/src/lib/krb5/krb/ChangeLog +++ b/src/lib/krb5/krb/ChangeLog @@ -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 diff --git a/src/lib/krb5/krb/x-deltat.y b/src/lib/krb5/krb/x-deltat.y index 3082b8a5f..ccd956d10 100644 --- a/src/lib/krb5/krb/x-deltat.y +++ b/src/lib/krb5/krb/x-deltat.y @@ -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); } |
