From: Ezra Peisach Date: Tue, 1 May 2001 14:59:25 +0000 (+0000) Subject: * update_wtmp.c (ptyint_update_wtmpx): Add missing semi-colon in X-Git-Tag: krb5-1.3-alpha1~1528 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c801cea950d1b81178e81ac2681f530ae89efb03;p=krb5.git * update_wtmp.c (ptyint_update_wtmpx): Add missing semi-colon in code path if PTY_UTMP_E_EXIT and PTY_UTMPX_E_EXIT exist. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13223 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/util/pty/ChangeLog b/src/util/pty/ChangeLog index cb191a54f..da11c08e3 100644 --- a/src/util/pty/ChangeLog +++ b/src/util/pty/ChangeLog @@ -1,3 +1,8 @@ +2001-05-01 Ezra Peisach + + * update_wtmp.c (ptyint_update_wtmpx): Add missing semi-colon in + code path if PTY_UTMP_E_EXIT and PTY_UTMPX_E_EXIT exist. + 2001-04-30 Tom Yu * configure.in: Fix some quoting of shell variables when passing diff --git a/src/util/pty/update_wtmp.c b/src/util/pty/update_wtmp.c index aa47322fc..f557d3602 100644 --- a/src/util/pty/update_wtmp.c +++ b/src/util/pty/update_wtmp.c @@ -82,7 +82,7 @@ ptyint_update_wtmpx(struct utmpx *ent) #if defined(PTY_UTMP_E_EXIT) && defined(PTY_UTMPX_E_EXIT) ut.ut_exit.PTY_UTMP_E_EXIT = ent->ut_exit.PTY_UTMPX_E_EXIT; ut.ut_exit.PTY_UTMP_E_TERMINATION = - ent->ut_exit.PTY_UTMPX_E_TERMINATION + ent->ut_exit.PTY_UTMPX_E_TERMINATION; #endif #endif /* !HAVE_GETUTMP */