summaryrefslogtreecommitdiff
path: root/ssh.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-01-19 04:26:52 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-01-19 04:26:52 +0000
commitdb65e8fdedadaf79df2d8393a4d43e9094c80649 (patch)
treee5902db5ee2b69f9f3c2fa0dbdeb7f4fc20c68b4 /ssh.h
parent5aa80596f76ce36dee4623a00a55548834c3328d (diff)
Please grep through the source and look for 'ISSUE' comments and verify
that I was able to get all the portable bits in the right location. As for the SKEY comment there is an email out to Markus as to how it should be resolved. Until then I just #ifdef SKEY/#endif out the whole block. - (bal) OpenBSD Resync - markus@cvs.openbsd.org 2001/01/18 16:20:21 [log-client.c log-server.c log.c readconf.c servconf.c ssh.1 ssh.h sshd.8 sshd.c] log() is at pri=LOG_INFO, since LOG_NOTICE goes to /dev/console on many systems - markus@cvs.openbsd.org 2001/01/18 16:59:59 [auth-passwd.c auth.c auth.h auth1.c auth2.c serverloop.c session.c session.h sshconnect1.c] 1) removes fake skey from sshd, since this will be much harder with /usr/libexec/auth/login_XXX 2) share/unify code used in ssh-1 and ssh-2 authentication (server side) 3) make addition of BSD_AUTH and other challenge reponse methods easier. - markus@cvs.openbsd.org 2001/01/18 17:12:43 [auth-chall.c auth2-chall.c] rename *-skey.c *-chall.c since the files are not skey specific
Diffstat (limited to 'ssh.h')
-rw-r--r--ssh.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh.h b/ssh.h
index f7330b915..9c487a398 100644
--- a/ssh.h
+++ b/ssh.h
@@ -12,7 +12,7 @@
12 * called by a name other than "ssh" or "Secure Shell". 12 * called by a name other than "ssh" or "Secure Shell".
13 */ 13 */
14 14
15/* RCSID("$OpenBSD: ssh.h,v 1.57 2001/01/07 11:28:06 markus Exp $"); */ 15/* RCSID("$OpenBSD: ssh.h,v 1.58 2001/01/18 16:20:22 markus Exp $"); */
16 16
17#ifndef SSH_H 17#ifndef SSH_H
18#define SSH_H 18#define SSH_H
@@ -445,7 +445,7 @@ typedef enum {
445 SYSLOG_LEVEL_QUIET, 445 SYSLOG_LEVEL_QUIET,
446 SYSLOG_LEVEL_FATAL, 446 SYSLOG_LEVEL_FATAL,
447 SYSLOG_LEVEL_ERROR, 447 SYSLOG_LEVEL_ERROR,
448 SYSLOG_LEVEL_NOTICE, 448 SYSLOG_LEVEL_INFO,
449 SYSLOG_LEVEL_VERBOSE, 449 SYSLOG_LEVEL_VERBOSE,
450 SYSLOG_LEVEL_DEBUG1, 450 SYSLOG_LEVEL_DEBUG1,
451 SYSLOG_LEVEL_DEBUG2, 451 SYSLOG_LEVEL_DEBUG2,