summaryrefslogtreecommitdiff
path: root/kex.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-04-23 12:08:37 +1000
committerDamien Miller <djm@mindrot.org>2006-04-23 12:08:37 +1000
commit97c91f688fa8f8d67bbe2e0aa0feb912fc3c00ef (patch)
tree2fdcbfd35755abb791bbc8e899686b32e838a855 /kex.h
parent58629fad824ebe0a10974930778beff455f41aea (diff)
- 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 597b54810..137c3d8eb 100644
--- a/kex.h
+++ b/kex.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: kex.h,v 1.41 2006/03/25 22:22:43 djm Exp $ */ 1/* $OpenBSD: kex.h,v 1.42 2006/04/20 09:27:09 djm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
@@ -114,7 +114,7 @@ struct Kex {
114 int kex_type; 114 int kex_type;
115 Buffer my; 115 Buffer my;
116 Buffer peer; 116 Buffer peer;
117 int done; 117 sig_atomic_t done;
118 int flags; 118 int flags;
119 const EVP_MD *evp_md; 119 const EVP_MD *evp_md;
120 char *client_version_string; 120 char *client_version_string;