summaryrefslogtreecommitdiff
path: root/ssh-agent.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-04-16 11:18:38 +1000
committerDamien Miller <djm@mindrot.org>2000-04-16 11:18:38 +1000
commit4af51306d9a51459a5bef922df1037f876ae51fe (patch)
tree09ecfc215fce82345a3259f8a0f384b9a67906f0 /ssh-agent.c
parent5d1705ecf9bd3216dc99a84242bcdf2e7297d307 (diff)
- OpenBSD CVS updates.
[ssh.1 ssh.c] - ssh -2 [auth.c channels.c clientloop.c packet.c packet.h serverloop.c] [session.c sshconnect.c] - check payload for (illegal) extra data [ALL] - whitespace cleanup
Diffstat (limited to 'ssh-agent.c')
-rw-r--r--ssh-agent.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ssh-agent.c b/ssh-agent.c
index ecb44a229..66439461e 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-agent.c,v 1.27 2000/04/12 09:39:10 markus Exp $ */ 1/* $OpenBSD: ssh-agent.c,v 1.28 2000/04/14 10:30:33 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -9,7 +9,7 @@
9 */ 9 */
10 10
11#include "includes.h" 11#include "includes.h"
12RCSID("$OpenBSD: ssh-agent.c,v 1.27 2000/04/12 09:39:10 markus Exp $"); 12RCSID("$OpenBSD: ssh-agent.c,v 1.28 2000/04/14 10:30:33 markus Exp $");
13 13
14#include "ssh.h" 14#include "ssh.h"
15#include "rsa.h" 15#include "rsa.h"
@@ -412,7 +412,7 @@ prepare_select(fd_set *readset, fd_set *writeset)
412 } 412 }
413} 413}
414 414
415void 415void
416after_select(fd_set *readset, fd_set *writeset) 416after_select(fd_set *readset, fd_set *writeset)
417{ 417{
418 unsigned int i; 418 unsigned int i;
@@ -646,8 +646,8 @@ main(int ac, char **av)
646 } 646 }
647 signal(SIGINT, SIG_IGN); 647 signal(SIGINT, SIG_IGN);
648 signal(SIGPIPE, SIG_IGN); 648 signal(SIGPIPE, SIG_IGN);
649 signal(SIGHUP, cleanup_exit); 649 signal(SIGHUP, cleanup_exit);
650 signal(SIGTERM, cleanup_exit); 650 signal(SIGTERM, cleanup_exit);
651 while (1) { 651 while (1) {
652 FD_ZERO(&readset); 652 FD_ZERO(&readset);
653 FD_ZERO(&writeset); 653 FD_ZERO(&writeset);