- (dtucker) [auth-sia.c] Constify sys_auth_passwd, fixes build error on

Tru64.  Patch from cmadams at hiwaay.net.
This commit is contained in:
Darren Tucker 2005-04-05 20:58:37 +10:00
parent 9d2562cf20
commit 00cadb8c35
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
20050405 20050405
- (dtucker) [configure.ac] Define HAVE_SO_PEERCRED if we have it. ok djm@ - (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.
20050403 20050403
- (djm) OpenBSD CVS Sync - (djm) OpenBSD CVS Sync
@ -2423,4 +2425,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM - (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3738 2005/04/05 09:22:45 dtucker Exp $ $Id: ChangeLog,v 1.3739 2005/04/05 10:58:37 dtucker Exp $

View File

@ -47,7 +47,7 @@ extern int saved_argc;
extern char **saved_argv; extern char **saved_argv;
int int
sys_auth_passwd(Authctxt *authctxt, char *pass) sys_auth_passwd(Authctxt *authctxt, const char *pass)
{ {
int ret; int ret;
SIAENTITY *ent = NULL; SIAENTITY *ent = NULL;