]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2001/08/07 10:37:46
authormouring <mouring>
Wed, 15 Aug 2001 23:04:50 +0000 (23:04 +0000)
committermouring <mouring>
Wed, 15 Aug 2001 23:04:50 +0000 (23:04 +0000)
     [authfd.c authfd.h]
     extended failure messages from galb@vandyke.com

ChangeLog
authfd.c
authfd.h

index e5dcba78be2788b2d4b2d90e0674d13d322a31b3..d7df5f6936491d5a977e7a5ea60e08aa51ab32aa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 20010815
  - (bal) Fixed stray code in readconf.c that went in by mistake.
+ - OpenBSD CVS Sync
+   - markus@cvs.openbsd.org 2001/08/07 10:37:46
+     [authfd.c authfd.h]
+     extended failure messages from galb@vandyke.com
 
 20010814
  - (stevesk) sshpty.c, cray.[ch]: whitespace, formatting and cleanup
index da4a32e0f4981165c382f83bcd809dd2aa575d37..2eb4513d472d6f01c8b98c76b8dca9fca29a8c78 100644 (file)
--- a/authfd.c
+++ b/authfd.c
@@ -35,7 +35,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: authfd.c,v 1.43 2001/08/01 22:03:33 markus Exp $");
+RCSID("$OpenBSD: authfd.c,v 1.44 2001/08/07 10:37:46 markus Exp $");
 
 #include <openssl/evp.h>
 
@@ -58,7 +58,8 @@ int   decode_reply(int type);
 
 /* macro to check for "agent failure" message */
 #define agent_failed(x) \
-    ((x == SSH_AGENT_FAILURE) || (x == SSH_COM_AGENT2_FAILURE))
+    ((x == SSH_AGENT_FAILURE) || (x == SSH_COM_AGENT2_FAILURE) || \
+     (x == SSH2_AGENT_FAILURE))
 
 /* Returns the number of the authentication fd, or -1 if there is none. */
 
@@ -585,6 +586,7 @@ decode_reply(int type)
        switch (type) {
        case SSH_AGENT_FAILURE:
        case SSH_COM_AGENT2_FAILURE:
+       case SSH2_AGENT_FAILURE:
                log("SSH_AGENT_FAILURE");
                return 0;
        case SSH_AGENT_SUCCESS:
index b7e88fde8e594b692a5d8277e167657d6d3f2783..8075a7ebddf18b9269f889152b56382d6035f98f 100644 (file)
--- a/authfd.h
+++ b/authfd.h
@@ -11,7 +11,7 @@
  * called by a name other than "ssh" or "Secure Shell".
  */
 
-/* RCSID("$OpenBSD: authfd.h,v 1.20 2001/08/01 22:03:33 markus Exp $"); */
+/* RCSID("$OpenBSD: authfd.h,v 1.21 2001/08/07 10:37:46 markus Exp $"); */
 
 #ifndef AUTHFD_H
 #define AUTHFD_H
@@ -42,6 +42,9 @@
 #define SSH_AGENTC_ADD_SMARTCARD_KEY           20
 #define SSH_AGENTC_REMOVE_SMARTCARD_KEY                21
 
+/* extended failure messages */
+#define SSH2_AGENT_FAILURE                     30
+
 /* additional error code for ssh.com's ssh-agent2 */
 #define SSH_COM_AGENT2_FAILURE                  102
 
This page took 0.172607 seconds and 5 git commands to generate.