diff options
author | Kevin Steves <stevesk@pobox.com> | 2002-07-22 01:59:39 +0200 |
---|---|---|
committer | Kevin Steves <stevesk@pobox.com> | 2002-07-22 01:59:39 +0200 |
commit | 287077eaf2db7115a08f0fa9bd811ddda6119209 (patch) | |
tree | b34d58b07fffdc3bc3c5ca326ae3e8c9dd4dcb70 /auth-pam.h | |
parent | - (stevesk) [auth-pam.h] unneeded include (diff) | |
download | openssh-287077eaf2db7115a08f0fa9bd811ddda6119209.tar.xz openssh-287077eaf2db7115a08f0fa9bd811ddda6119209.zip |
- (stevesk) [auth-pam.[ch] ssh.h] move SSHD_PAM_SERVICE to auth-pam.h
Diffstat (limited to 'auth-pam.h')
-rw-r--r-- | auth-pam.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/auth-pam.h b/auth-pam.h index 8cb7389e1..215e75282 100644 --- a/auth-pam.h +++ b/auth-pam.h @@ -1,4 +1,4 @@ -/* $Id: auth-pam.h,v 1.14 2002/07/21 23:20:07 stevesk Exp $ */ +/* $Id: auth-pam.h,v 1.15 2002/07/21 23:59:39 stevesk Exp $ */ /* * Copyright (c) 2000 Damien Miller. All rights reserved. @@ -27,6 +27,10 @@ #include "includes.h" #ifdef USE_PAM +#if !defined(SSHD_PAM_SERVICE) +# define SSHD_PAM_SERVICE __progname +#endif + void start_pam(const char *user); void finish_pam(void); int auth_pam_password(Authctxt *authctxt, const char *password); |