summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-09-12 16:58:04 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-09-12 16:58:04 +0000
commitce89dacda8fed7173cb444bf5e5efc0483b6491f (patch)
treeb562fbf5537ffd72c97b48bf78656816a3b55447
parentffa1dd681712f92c71444cea28975265b826e8e8 (diff)
- camield@cvs.openbsd.org 2001/08/23 17:59:31
[sshd.c] end request with 0, not NULL ok markus@
-rw-r--r--ChangeLog6
-rw-r--r--sshd.c4
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 900b40fbd..4a001ea35 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -22,6 +22,10 @@
22 - stevesk@cvs.openbsd.org 2001/08/22 17:45:16 22 - stevesk@cvs.openbsd.org 2001/08/22 17:45:16
23 [ssh.1] 23 [ssh.1]
24 document cipher des for protocol 1; ok deraadt@ 24 document cipher des for protocol 1; ok deraadt@
25 - camield@cvs.openbsd.org 2001/08/23 17:59:31
26 [sshd.c]
27 end request with 0, not NULL
28 ok markus@
25 29
2620010815 3020010815
27 - (bal) Fixed stray code in readconf.c that went in by mistake. 31 - (bal) Fixed stray code in readconf.c that went in by mistake.
@@ -6345,4 +6349,4 @@
6345 - Wrote replacements for strlcpy and mkdtemp 6349 - Wrote replacements for strlcpy and mkdtemp
6346 - Released 1.0pre1 6350 - Released 1.0pre1
6347 6351
6348$Id: ChangeLog,v 1.1491 2001/09/12 16:52:28 mouring Exp $ 6352$Id: ChangeLog,v 1.1492 2001/09/12 16:58:04 mouring Exp $
diff --git a/sshd.c b/sshd.c
index b6adc38cb..aa822df17 100644
--- a/sshd.c
+++ b/sshd.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: sshd.c,v 1.203 2001/07/26 17:18:22 stevesk Exp $"); 43RCSID("$OpenBSD: sshd.c,v 1.204 2001/08/23 17:59:31 camield Exp $");
44 44
45#include <openssl/dh.h> 45#include <openssl/dh.h>
46#include <openssl/bn.h> 46#include <openssl/bn.h>
@@ -1138,7 +1138,7 @@ main(int ac, char **av)
1138 { 1138 {
1139 struct request_info req; 1139 struct request_info req;
1140 1140
1141 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, NULL); 1141 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
1142 fromhost(&req); 1142 fromhost(&req);
1143 1143
1144 if (!hosts_access(&req)) { 1144 if (!hosts_access(&req)) {