summaryrefslogtreecommitdiff
path: root/sshconnect.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshconnect.c')
-rw-r--r--sshconnect.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sshconnect.c b/sshconnect.c
index 033184595..f984bcaa0 100644
--- a/sshconnect.c
+++ b/sshconnect.c
@@ -15,7 +15,7 @@ login (authentication) dialog.
15*/ 15*/
16 16
17#include "includes.h" 17#include "includes.h"
18RCSID("$Id: sshconnect.c,v 1.7 1999/11/12 23:51:58 damien Exp $"); 18RCSID("$Id: sshconnect.c,v 1.8 1999/11/15 04:25:10 damien Exp $");
19 19
20#ifdef HAVE_OPENSSL 20#ifdef HAVE_OPENSSL
21#include <openssl/bn.h> 21#include <openssl/bn.h>
@@ -730,8 +730,10 @@ int try_kerberos_authentication()
730 r = sizeof(foreign); 730 r = sizeof(foreign);
731 memset(&foreign, 0, sizeof(foreign)); 731 memset(&foreign, 0, sizeof(foreign));
732 if (getpeername(packet_get_connection_in(), 732 if (getpeername(packet_get_connection_in(),
733 (struct sockaddr *)&foreign, &r) < 0) 733 (struct sockaddr *)&foreign, &r) < 0) {
734 debug("getpeername failed: %s", strerror(errno)); 734 debug("getpeername failed: %s", strerror(errno));
735 fatal_cleanup();
736 }
735 737
736 /* Get server reply. */ 738 /* Get server reply. */
737 type = packet_read(&plen); 739 type = packet_read(&plen);