Displaying 5 results from an estimated 5 matches for "ssh_askpass_default".
Did you mean:
dssh_askpass_default
2001 Jan 22
3
CVS source tree from 22 Jan 2001
Makefile.in is not fixed !
in old ssh.h
# define SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass"
in new pathnames.h
#define _PATH_SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass"
but in Makefile.in
PATHS=...-DSSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\"
-----------------------------------------------------------
about patch:...
2000 Sep 09
0
2.2.0p1 PATCH: ssh/scp/slogin will invoke ssh-askpass
...passphrase for RSA key '%.100s': ",
comment);
if (!options.batch_mode)
- passphrase = read_passphrase(buf, 0);
+ if (!interactive && getenv("DISPLAY")) {
+ if (getenv(SSH_ASKPASS_ENV))
+ askpass = getenv(SSH_ASKPASS_ENV);
+ else
+ askpass = SSH_ASKPASS_DEFAULT;
+ passphrase = ssh_askpass(askpass, buf);
+ } else {
+ passphrase = read_passphrase(buf, 0);
+ }
else {
debug("Will not query passphrase for %.100s in batch mode.",
comment);
@@ -602,6 +612,9 @@
int payload_len;
unsigned int clen;
char *challenge, *respon...
1999 Dec 10
2
[David Huggins-Daines <dhd@plcom.on.ca>] Bug#52414: ssh-add uses ssh-askpass, but ssh doesn't
...ment);
- if (!options.batch_mode)
- passphrase = read_passphrase(buf, 0);
- else {
+ if (!options.batch_mode) {
+ if (use_askpass) {
+ const char * askpass;
+ if ((askpass = getenv(SSH_ASKPASS_ENV)))
+ passphrase = ssh_askpass(askpass, buf);
+ else
+ passphrase = ssh_askpass(SSH_ASKPASS_DEFAULT, buf);
+ } else
+ passphrase = read_passphrase(buf, 0);
+ } else {
debug("Will not query passphrase for %.100s in batch mode.",
comment);
passphrase = xstrdup("");
@@ -921,7 +931,14 @@
for (i = 0; i < options.number_of_password_prompts; i++) {
if...
2002 Dec 18
1
[Bug 458] sshd crashes with "fatal: mm_malloc: size too big"
http://bugzilla.mindrot.org/show_bug.cgi?id=458
------- Additional Comments From us- at gmx.de 2002-12-19 03:16 -------
Sorry, typo: The irix version is 6.5.17 not 6.5.18
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2003 Sep 05
3
[Bug 458] sshd crashes with "fatal: mm_malloc: size too big"
...(
The definition of SIZE_T_MAX has to be changed to be in the range of the type of
size
>From the build log:
gcc -O3 -pipe -mcpu=ultrasparc -m32 -I. -I. -I/usr/local/include
-I/usr/local/include -DSSHDIR=\"/etc/ssh\"
-D_PATH_SSH_PROGRAM=\"/usr/local/bin/ssh\" -D_PATH_
SSH_ASKPASS_DEFAULT=\"/usr/local/lib/ssh/ssh-askpass\" -D_PATH_SFTP_SERVER=\"/us
r/local/lib/ssh/sftp-server\"
-D_PATH_SSH_KEY_SIGN=\"/usr/local/lib/ssh/ssh-keysign\"
-D_PATH_SSH_PIDDIR=\"/var/run\" -D_PATH_PRIVSEP_CHROOT_DIR=\"/var/empty\"
-DSSH_RAND_HELPER=\&qu...