summaryrefslogtreecommitdiff
path: root/ssh.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-09 10:28:04 +1100
committerDamien Miller <djm@mindrot.org>1999-11-09 10:28:04 +1100
commitc7b38ceed6030484c61c71ea9fafaca6b34a297e (patch)
tree4ad64e48a77da1772b19ab6578ad8877ab75ba3a /ssh.h
parente8d9068a36e2528dbaf48c192cd1f97e8beafdfe (diff)
- Autodetection of SSL/Crypto library location via autoconf
- Fixed location of ssh-askpass to follow autoconf - Integrated Makefile patch from Niels Kristian Bech Jensen <nkbj@image.dk> - Autodetection of RSAref library for US users - Minor doc updates
Diffstat (limited to 'ssh.h')
-rw-r--r--ssh.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/ssh.h b/ssh.h
index 1fd17c1aa..ddcb5381b 100644
--- a/ssh.h
+++ b/ssh.h
@@ -13,7 +13,7 @@ Generic header file for ssh.
13 13
14*/ 14*/
15 15
16/* RCSID("$Id: ssh.h,v 1.7 1999/11/08 05:15:55 damien Exp $"); */ 16/* RCSID("$Id: ssh.h,v 1.8 1999/11/08 23:28:04 damien Exp $"); */
17 17
18#ifndef SSH_H 18#ifndef SSH_H
19#define SSH_H 19#define SSH_H
@@ -93,6 +93,10 @@ only by root, whereas ssh_config should be world-readable. */
93#define LOGIN_PROGRAM "/usr/bin/login" 93#define LOGIN_PROGRAM "/usr/bin/login"
94#endif /* LOGIN_PROGRAM */ 94#endif /* LOGIN_PROGRAM */
95 95
96#ifndef ASKPASS_PROGRAM
97#define ASKPASS_PROGRAM "/usr/lib/ssh/ssh-askpass"
98#endif /* ASKPASS_PROGRAM */
99
96/* The process id of the daemon listening for connections is saved 100/* The process id of the daemon listening for connections is saved
97 here to make it easier to kill the correct daemon when necessary. */ 101 here to make it easier to kill the correct daemon when necessary. */
98#define SSH_DAEMON_PID_FILE PIDDIR "/sshd.pid" 102#define SSH_DAEMON_PID_FILE PIDDIR "/sshd.pid"