diff options
author | djm <djm> | 2008-02-10 11:25:52 +0000 |
---|---|---|
committer | djm <djm> | 2008-02-10 11:25:52 +0000 |
commit | 9c633c5f64db8ed2f85a0a7c12d411b73dfac541 (patch) | |
tree | b08bb1f8e7af241e88fa19ca1b8f72bcc2c31a3e /readconf.h | |
parent | b2be9a3eb580313ed37597e142ff2e619acb343d (diff) | |
download | openssh-9c633c5f64db8ed2f85a0a7c12d411b73dfac541.tar.gz |
- djm@cvs.openbsd.org 2008/01/19 23:09:49
[readconf.c readconf.h sshconnect2.c]
promote rekeylimit to a int64 so it can hold the maximum useful limit
of 2^32; report and patch from Jan.Pechanec AT Sun.COM, ok dtucker@
Diffstat (limited to 'readconf.h')
-rw-r--r-- | readconf.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.h,v 1.71 2006/08/03 03:34:42 deraadt Exp $ */ +/* $OpenBSD: readconf.h,v 1.72 2008/01/19 23:09:49 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -100,7 +100,7 @@ typedef struct { int clear_forwardings; int enable_ssh_keysign; - int rekey_limit; + int64_t rekey_limit; int no_host_authentication_for_localhost; int identities_only; int server_alive_interval; |