summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-12-06 17:52:16 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-12-06 17:52:16 +0000
commitf8f065bc752ca0a448eb90fc8d60516f486dc4ff (patch)
tree8c468686546dc8673d93c1e629f46c79d65391cc /sshd.c
parentd05487d1db230db5d55c217fac907a5694bd7dd5 (diff)
- itojun@cvs.openbsd.org 2001/12/05 03:50:01
[clientloop.c serverloop.c sshd.c] deal with LP64 printf issue with sig_atomic_t. from thorpej
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshd.c b/sshd.c
index 5a09598c0..9b3179bca 100644
--- a/sshd.c
+++ b/sshd.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: sshd.c,v 1.212 2001/11/22 12:34:22 markus Exp $"); 43RCSID("$OpenBSD: sshd.c,v 1.213 2001/12/05 03:50:01 itojun Exp $");
44 44
45#include <openssl/dh.h> 45#include <openssl/dh.h>
46#include <openssl/bn.h> 46#include <openssl/bn.h>
@@ -978,7 +978,7 @@ main(int ac, char **av)
978 error("select: %.100s", strerror(errno)); 978 error("select: %.100s", strerror(errno));
979 if (received_sigterm) { 979 if (received_sigterm) {
980 log("Received signal %d; terminating.", 980 log("Received signal %d; terminating.",
981 received_sigterm); 981 (int) received_sigterm);
982 close_listen_socks(); 982 close_listen_socks();
983 unlink(options.pid_file); 983 unlink(options.pid_file);
984 exit(255); 984 exit(255);