summaryrefslogtreecommitdiff
path: root/ssh-agent.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh-agent.c')
-rw-r--r--ssh-agent.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/ssh-agent.c b/ssh-agent.c
index 54ab4d7a2..bc4d8d33a 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -35,7 +35,7 @@
35 35
36#include "includes.h" 36#include "includes.h"
37#include "openbsd-compat/sys-queue.h" 37#include "openbsd-compat/sys-queue.h"
38RCSID("$OpenBSD: ssh-agent.c,v 1.119 2004/06/14 01:44:39 djm Exp $"); 38RCSID("$OpenBSD: ssh-agent.c,v 1.120 2004/08/11 21:43:05 avsm Exp $");
39 39
40#include <openssl/evp.h> 40#include <openssl/evp.h>
41#include <openssl/md5.h> 41#include <openssl/md5.h>
@@ -816,7 +816,7 @@ new_socket(sock_type type, int fd)
816} 816}
817 817
818static int 818static int
819prepare_select(fd_set **fdrp, fd_set **fdwp, int *fdl, int *nallocp) 819prepare_select(fd_set **fdrp, fd_set **fdwp, int *fdl, u_int *nallocp)
820{ 820{
821 u_int i, sz; 821 u_int i, sz;
822 int n = 0; 822 int n = 0;
@@ -1002,7 +1002,8 @@ int
1002main(int ac, char **av) 1002main(int ac, char **av)
1003{ 1003{
1004 int c_flag = 0, d_flag = 0, k_flag = 0, s_flag = 0; 1004 int c_flag = 0, d_flag = 0, k_flag = 0, s_flag = 0;
1005 int sock, fd, ch, nalloc; 1005 int sock, fd, ch;
1006 u_int nalloc;
1006 char *shell, *format, *pidstr, *agentsocket = NULL; 1007 char *shell, *format, *pidstr, *agentsocket = NULL;
1007 fd_set *readsetp = NULL, *writesetp = NULL; 1008 fd_set *readsetp = NULL, *writesetp = NULL;
1008 struct sockaddr_un sunaddr; 1009 struct sockaddr_un sunaddr;