diff options
author | Darren Tucker <dtucker@zip.com.au> | 2009-06-21 11:08:48 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2009-06-21 11:08:48 +0200 |
commit | e6b590e8d40e2b2ab0aab9da1b7d34cd357caf6a (patch) | |
tree | ee33e59104f4613065cc423548eaad9aa802a5a6 /roaming_dummy.c | |
parent | - dtucker@cvs.openbsd.org 2009/06/21 07:37:15 (diff) | |
download | openssh-e6b590e8d40e2b2ab0aab9da1b7d34cd357caf6a.tar.xz openssh-e6b590e8d40e2b2ab0aab9da1b7d34cd357caf6a.zip |
- dtucker@cvs.openbsd.org 2009/06/21 09:04:03
[roaming.h roaming_common.c roaming_dummy.c]
Add tags for the benefit of the sync scripts
Also: pull in the changes for 1.1->1.2 missed in the previous sync.
Diffstat (limited to 'roaming_dummy.c')
-rw-r--r-- | roaming_dummy.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/roaming_dummy.c b/roaming_dummy.c index cd1d20257..f081bffe9 100644 --- a/roaming_dummy.c +++ b/roaming_dummy.c @@ -1,3 +1,4 @@ +/* $OpenBSD: roaming_dummy.c,v 1.3 2009/06/21 09:04:03 dtucker Exp $ */ /* * Copyright (c) 2004-2009 AppGate Network Security AB * @@ -22,9 +23,12 @@ #include <sys/types.h> #include <unistd.h> +#include "roaming.h" + int resume_in_progress = 0; -u_int64_t get_recv_bytes() +u_int64_t +get_recv_bytes(void) { return 0; } @@ -49,7 +53,7 @@ add_recv_bytes(u_int64_t num) } int -resume_kex() +resume_kex(void) { return 1; } |