summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-26 14:08:10 +1100
committerDamien Miller <djm@mindrot.org>2006-03-26 14:08:10 +1100
commit4ae97f1885daee4b6ccfa2b5062530d26cb38806 (patch)
tree3ce5b0cc3ac05ec962ed37f1e076001438e5a557
parent9f3bd53acdf281586910e49b15eef2bf87bfdda2 (diff)
- deraadt@cvs.openbsd.org 2006/03/20 18:35:12
[channels.c] x11_fake_data is only ever used as u_char *
-rw-r--r--ChangeLog5
-rw-r--r--channels.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 29e317f94..d192ae418 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -89,6 +89,9 @@
89 - deraadt@cvs.openbsd.org 2006/03/20 18:27:50 89 - deraadt@cvs.openbsd.org 2006/03/20 18:27:50
90 [monitor.c] 90 [monitor.c]
91 spacing 91 spacing
92 - deraadt@cvs.openbsd.org 2006/03/20 18:35:12
93 [channels.c]
94 x11_fake_data is only ever used as u_char *
92 95
9320060325 9620060325
94 - OpenBSD CVS Sync 97 - OpenBSD CVS Sync
@@ -4346,4 +4349,4 @@
4346 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4349 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4347 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4350 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4348 4351
4349$Id: ChangeLog,v 1.4267 2006/03/26 03:07:52 djm Exp $ 4352$Id: ChangeLog,v 1.4268 2006/03/26 03:08:10 djm Exp $
diff --git a/channels.c b/channels.c
index d16493001..239da8e9b 100644
--- a/channels.c
+++ b/channels.c
@@ -128,7 +128,7 @@ static u_int x11_saved_data_len = 0;
128 * Fake X11 authentication data. This is what the server will be sending us; 128 * Fake X11 authentication data. This is what the server will be sending us;
129 * we should replace any occurrences of this by the real data. 129 * we should replace any occurrences of this by the real data.
130 */ 130 */
131static char *x11_fake_data = NULL; 131static u_char *x11_fake_data = NULL;
132static u_int x11_fake_data_len; 132static u_int x11_fake_data_len;
133 133
134 134