diff options
author | Darren Tucker <dtucker@zip.com.au> | 2005-04-05 12:58:37 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2005-04-05 12:58:37 +0200 |
commit | 00cadb8c35fd1d178665a32899aea2a851077aaa (patch) | |
tree | 7511e7b505ef9e5b4b534f574134156eea244855 /auth-sia.c | |
parent | - (dtucker) [configure.ac] Define HAVE_SO_PEERCRED if we have it. ok djm@ (diff) | |
download | openssh-00cadb8c35fd1d178665a32899aea2a851077aaa.tar.xz openssh-00cadb8c35fd1d178665a32899aea2a851077aaa.zip |
- (dtucker) [auth-sia.c] Constify sys_auth_passwd, fixes build error on
Tru64. Patch from cmadams at hiwaay.net.
Diffstat (limited to 'auth-sia.c')
-rw-r--r-- | auth-sia.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; extern char **saved_argv; int -sys_auth_passwd(Authctxt *authctxt, char *pass) +sys_auth_passwd(Authctxt *authctxt, const char *pass) { int ret; SIAENTITY *ent = NULL; |