diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2019-01-19 21:37:49 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2019-01-19 21:37:49 +0000 |
commit | 29b5378391a7131edbb8e035916e5b894e8734c9 (patch) | |
tree | 19c697436a86e893a662a153119be938664ed309 /usr.bin/ssh/servconf.h | |
parent | 999188f8d607a0f01e419de362f70da500ba0c79 (diff) |
convert servconf.c to new packet API
with & ok markus@
Diffstat (limited to 'usr.bin/ssh/servconf.h')
-rw-r--r-- | usr.bin/ssh/servconf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/servconf.h b/usr.bin/ssh/servconf.h index b72e48d9381..0917f376436 100644 --- a/usr.bin/ssh/servconf.h +++ b/usr.bin/ssh/servconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: servconf.h,v 1.138 2018/11/19 04:12:32 djm Exp $ */ +/* $OpenBSD: servconf.h,v 1.139 2019/01/19 21:37:48 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -256,7 +256,7 @@ struct connection_info { M_CP_STRARRAYOPT(permitted_listens, num_permitted_listens); \ } while (0) -struct connection_info *get_connection_info(int, int); +struct connection_info *get_connection_info(struct ssh *, int, int); void initialize_server_options(ServerOptions *); void fill_default_server_options(ServerOptions *); int process_server_config_line(ServerOptions *, char *, const char *, int, |