diff options
author | Darren Tucker <dtucker@zip.com.au> | 2005-04-05 13:00:47 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2005-04-05 13:00:47 +0200 |
commit | 0f5eeff23dc88b7ea6ac5f0345bd088ea3f49750 (patch) | |
tree | d0c96bcc21ff8d7ff000926e2e65a1b8935b23f4 | |
parent | - (dtucker) [auth-sia.c] Constify sys_auth_passwd, fixes build error on (diff) | |
download | openssh-0f5eeff23dc88b7ea6ac5f0345bd088ea3f49750.tar.xz openssh-0f5eeff23dc88b7ea6ac5f0345bd088ea3f49750.zip |
- (dtucker) [auth-passwd.c auth-sia.h] Remove duplicate definitions of
sys_auth_passwd, pointed out by cmadams at hiwaay.net.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | auth-passwd.c | 1 | ||||
-rw-r--r-- | auth-sia.h | 1 |
3 files changed, 3 insertions, 3 deletions
@@ -2,6 +2,8 @@ - (dtucker) [configure.ac] Define HAVE_SO_PEERCRED if we have it. ok djm@ - (dtucker) [auth-sia.c] Constify sys_auth_passwd, fixes build error on Tru64. Patch from cmadams at hiwaay.net. + - (dtucker) [auth-passwd.c auth-sia.h] Remove duplicate definitions of + sys_auth_passwd, pointed out by cmadams at hiwaay.net. 20050403 - (djm) OpenBSD CVS Sync @@ -2425,4 +2427,4 @@ - (djm) Trim deprecated options from INSTALL. Mention UsePAM - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu -$Id: ChangeLog,v 1.3739 2005/04/05 10:58:37 dtucker Exp $ +$Id: ChangeLog,v 1.3740 2005/04/05 11:00:47 dtucker Exp $ diff --git a/auth-passwd.c b/auth-passwd.c index 27ece3f72..654e0b821 100644 --- a/auth-passwd.c +++ b/auth-passwd.c @@ -47,7 +47,6 @@ RCSID("$OpenBSD: auth-passwd.c,v 1.33 2005/01/24 11:47:13 dtucker Exp $"); extern Buffer loginmsg; extern ServerOptions options; -int sys_auth_passwd(Authctxt *, const char *); #ifdef HAVE_LOGIN_CAP extern login_cap_t *lc; diff --git a/auth-sia.h b/auth-sia.h index ca55e913e..27cbb93f1 100644 --- a/auth-sia.h +++ b/auth-sia.h @@ -26,7 +26,6 @@ #ifdef HAVE_OSF_SIA -int sys_auth_passwd(Authctxt *, char *); void session_setup_sia(struct passwd *, char *); #endif /* HAVE_OSF_SIA */ |