Displaying 2 results from an estimated 2 matches for "diqq46".
2000 Dec 22
0
patch to specify DSA host key on command line
--- openssh-2.3.0p1/sshd.c Sat Oct 14 01:23:13 2000
+++ openssh-2.3.0p1.new/sshd.c Tue Dec 19 11:26:51 2000
@@ -506,7 +506,7 @@
initialize_server_options(&options);
/* Parse command-line arguments. */
- while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:diqQ46")) != EOF) {
+ while ((opt = getopt(ac, av, "f:p:b:k:h:H:g:V:u:diqQ46")) != EOF) {
switch (opt) {
case '4':
IPv4or6 = AF_INET;
@@ -557,6 +557,9 @@
case 'h':
options.h...
2001 Feb 13
4
issue with EGD in openssh
...Mon Feb 12 07:36:18 2001
@@ -505,6 +505,9 @@
/* Initialize configuration options to their default values. */
initialize_server_options(&options);
+ /* Ignore SIGPIPE */
+ signal(SIGPIPE, SIG_IGN);
+
/* Parse command-line arguments. */
while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:diqQ46")) != EOF) {
switch (opt) {
--- entropy.c.DIST Mon Oct 16 03:13:43 2000
+++ entropy.c Mon Feb 12 11:00:53 2001
@@ -69,6 +69,7 @@
char msg[2];
struct sockaddr_un addr;
int addr_len;
+ int i, rval;
/* Sanity checks */
if (sizeof(EGD_SOCKET) > sizeof(addr.sun_path))
@@ -81,13 +8...