summaryrefslogtreecommitdiff
path: root/kex.h
diff options
context:
space:
mode:
authordjm <djm>2006-04-23 02:08:37 +0000
committerdjm <djm>2006-04-23 02:08:37 +0000
commitfa31277dc07bf6f81f79d34bd99587832d247e51 (patch)
tree352a73cbaab86bf032c4b3f7a29db44e5f2113b5 /kex.h
parent062f0f8c794bae724c1ea4a48e0d76157c6de179 (diff)
downloadopenssh-fa31277dc07bf6f81f79d34bd99587832d247e51.tar.gz
- djm@cvs.openbsd.org 2006/04/20 09:27:09
[auth.h clientloop.c dispatch.c dispatch.h kex.h] replace the last non-sig_atomic_t flag used in a signal handler with a sig_atomic_t, unfortunately with some knock-on effects in other (non- signal) contexts in which it is used; ok markus@
Diffstat (limited to 'kex.h')
-rw-r--r--kex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kex.h b/kex.h
index 597b5481..137c3d8e 100644
--- a/kex.h
+++ b/kex.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: kex.h,v 1.41 2006/03/25 22:22:43 djm Exp $ */
+/* $OpenBSD: kex.h,v 1.42 2006/04/20 09:27:09 djm Exp $ */
/*
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
@@ -114,7 +114,7 @@ struct Kex {
int kex_type;
Buffer my;
Buffer peer;
- int done;
+ sig_atomic_t done;
int flags;
const EVP_MD *evp_md;
char *client_version_string;