search for: have_readpassphrase

Displaying 6 results from an estimated 6 matches for "have_readpassphrase".

2001 Oct 26
5
New password echoes on Sol8
...ms Programmer III, Network and Systems Services finger -l ed at polycut.nss.udel.edu for PGP public key *** openbsd-compat/readpassphrase.c_orig Fri Oct 26 14:50:44 2001 --- openbsd-compat/readpassphrase.c Fri Oct 26 15:28:34 2001 *************** *** 33,38 **** --- 33,40 ---- #ifndef HAVE_READPASSPHRASE + #ifndef HAVE_GETPASSPHRASE + #include <termios.h> #include <readpassphrase.h> *************** *** 148,153 **** --- 150,176 ---- (void)close(input); return(buf); } + #else + + #include <unistd.h> + + char * + readpassphrase(prompt, buf, bufsiz, fla...
2002 May 02
0
[Bug 234] New: OpenSSH does not compile on OpenBSD 3.1
...9; undeclared (first use in this function) readpass.c:105: `RPP_REQUIRE_TTY' undeclared (first use in this function) readpass.c:121: warning: implicit declaration of function `readpassphrase' *** Error code 1 The required defines are in openbsd-compat/readpassphrase.h, and they assume that HAVE_READPASSPHRASE is undefined. If I undefine HAVE_READPASSPHRASE, make clean, and make, everything compiles, but when I try to turn on sshd, I get: /usr/local/etc/sshd_config: line 68: Bad configuration option: KerberosAuthentication /usr/local/etc/sshd_config: line 69: Bad configuration option: KerberosOrLocalPa...
2002 Jun 28
0
[Bug 314] New: switch to READPASSPHRASE_H to avoid conflicts with exiisting headers
...dpassphrase.h Sun Jan 27 19:18:54 2002 @@ -28,6 +28,6 @@ */ -#ifndef _READPASSPHRASE_H_ -#define _READPASSPHRASE_H_ +#ifndef READPASSPHRASE_H_ +#define READPASSPHRASE_H_ #include "includes.h" @@ -43,6 +43,7 @@ char *readpassphrase(const char *, char *, size_t, int); - +#else /* HAVE_READPASSPHRASE */ +#include <readpassphrase.h> #endif /* HAVE_READPASSPHRASE */ -#endif /* !_READPASSPHRASE_H_ */ +#endif /* !READPASSPHRASE_H_ */ ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2005 Dec 01
0
[PATCH] Janitor duties
...t;includes.h" is included prior to the others and therefore includes the headers first. Is it OK, or is it a design decision to have the includes specific to the c-files in the c-files as well? There is also the correction of an error. In openbsd-compat/readpassphrase.c there was #ifndef HAVE_READPASSPHRASE #include <termios.h> #include <readpassphrase.h> I changed <readpassphrase.h> to "readpassphrase.h". Cheers Johan Gill -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: openbsd-compat.diff Url: http://lists.mindrot....
2002 Apr 29
9
[Bug 230] UsePrivilegeSeparation turns off Banner.
http://bugzilla.mindrot.org/show_bug.cgi?id=230 ------- Additional Comments From krh at lemniscate.net 2002-04-29 10:53 ------- I should add that I also have PrintMotd off so that the motd is printed only once, and yes, I am connecting with the SSH 2 protocol. ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...*/ /* #undef HAVE_OPENLOG_R */ #define HAVE_OPENPTY 1 /* #undef HAVE_PAM_GETENVLIST */ /* #undef HAVE_PAM_PAM_APPL_H */ /* #undef HAVE_PAM_PUTENV */ #define HAVE_PATHS_H 1 #define HAVE_PRCTL 1 /* #undef HAVE_PSTAT */ #define HAVE_PTY_H 1 #define HAVE_PUTUTLINE 1 #define HAVE_PUTUTXLINE 1 /* #undef HAVE_READPASSPHRASE */ /* #undef HAVE_READPASSPHRASE_H */ #define HAVE_REALPATH 1 #define HAVE_RECVMSG 1 #define HAVE_RPC_TYPES_H 1 #define HAVE_RRESVPORT_AF 1 /* #undef HAVE_SECTOK_H */ /* #undef HAVE_SECURITY_PAM_APPL_H */ #define HAVE_SENDMSG 1 /* #undef HAVE_SETAUTHDB */ /* #undef HAVE_SETDTABLESIZE */ #define HAV...