summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2005-04-05 20:58:37 +1000
committerDarren Tucker <dtucker@zip.com.au>2005-04-05 20:58:37 +1000
commit00cadb8c35fd1d178665a32899aea2a851077aaa (patch)
tree7511e7b505ef9e5b4b534f574134156eea244855
parent9d2562cf201e82d14d10abdd34009d8ab16a9d25 (diff)
- (dtucker) [auth-sia.c] Constify sys_auth_passwd, fixes build error on
Tru64. Patch from cmadams at hiwaay.net.
-rw-r--r--ChangeLog4
-rw-r--r--auth-sia.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 622380440..680a9b5d8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
120050405 120050405
2 - (dtucker) [configure.ac] Define HAVE_SO_PEERCRED if we have it. ok djm@ 2 - (dtucker) [configure.ac] Define HAVE_SO_PEERCRED if we have it. ok djm@
3 - (dtucker) [auth-sia.c] Constify sys_auth_passwd, fixes build error on
4 Tru64. Patch from cmadams at hiwaay.net.
3 5
420050403 620050403
5 - (djm) OpenBSD CVS Sync 7 - (djm) OpenBSD CVS Sync
@@ -2423,4 +2425,4 @@
2423 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 2425 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
2424 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 2426 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
2425 2427
2426$Id: ChangeLog,v 1.3738 2005/04/05 09:22:45 dtucker Exp $ 2428$Id: ChangeLog,v 1.3739 2005/04/05 10:58:37 dtucker Exp $
diff --git a/auth-sia.c b/auth-sia.c
index 63f55d07f..af7182b48 100644
--- a/auth-sia.c
+++ b/auth-sia.c
@@ -47,7 +47,7 @@ extern int saved_argc;
47extern char **saved_argv; 47extern char **saved_argv;
48 48
49int 49int
50sys_auth_passwd(Authctxt *authctxt, char *pass) 50sys_auth_passwd(Authctxt *authctxt, const char *pass)
51{ 51{
52 int ret; 52 int ret;
53 SIAENTITY *ent = NULL; 53 SIAENTITY *ent = NULL;