summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--auth2.c6
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 3372e37d9..c1bbc6a27 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,9 @@
9 - markus@cvs.openbsd.org 2001/04/18 22:03:45 9 - markus@cvs.openbsd.org 2001/04/18 22:03:45
10 [auth2.c sshconnect2.c] 10 [auth2.c sshconnect2.c]
11 use FDQN with trailing dot in the hostbased auth packets, ok deraadt@ 11 use FDQN with trailing dot in the hostbased auth packets, ok deraadt@
12 - markus@cvs.openbsd.org 2001/04/18 22:48:26
13 [auth2.c]
14 no longer const
12 15
1320010418 1620010418
14 - OpenBSD CVS Sync 17 - OpenBSD CVS Sync
@@ -5171,4 +5174,4 @@
5171 - Wrote replacements for strlcpy and mkdtemp 5174 - Wrote replacements for strlcpy and mkdtemp
5172 - Released 1.0pre1 5175 - Released 1.0pre1
5173 5176
5174$Id: ChangeLog,v 1.1142 2001/04/19 20:35:40 mouring Exp $ 5177$Id: ChangeLog,v 1.1143 2001/04/19 20:38:06 mouring Exp $
diff --git a/auth2.c b/auth2.c
index be07be914..5db8f8d5d 100644
--- a/auth2.c
+++ b/auth2.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: auth2.c,v 1.53 2001/04/18 22:03:44 markus Exp $"); 26RCSID("$OpenBSD: auth2.c,v 1.54 2001/04/18 22:48:26 markus Exp $");
27 27
28#include <openssl/evp.h> 28#include <openssl/evp.h>
29 29
@@ -82,7 +82,7 @@ Authmethod *authmethod_lookup(const char *name);
82char *authmethods_get(void); 82char *authmethods_get(void);
83int user_key_allowed(struct passwd *pw, Key *key); 83int user_key_allowed(struct passwd *pw, Key *key);
84int 84int
85hostbased_key_allowed(struct passwd *pw, const char *cuser, const char *chost, 85hostbased_key_allowed(struct passwd *pw, const char *cuser, char *chost,
86 Key *key); 86 Key *key);
87 87
88/* auth */ 88/* auth */
@@ -792,7 +792,7 @@ user_key_allowed(struct passwd *pw, Key *key)
792 792
793/* return 1 if given hostkey is allowed */ 793/* return 1 if given hostkey is allowed */
794int 794int
795hostbased_key_allowed(struct passwd *pw, const char *cuser, const char *chost, 795hostbased_key_allowed(struct passwd *pw, const char *cuser, char *chost,
796 Key *key) 796 Key *key)
797{ 797{
798 Key *found; 798 Key *found;