summaryrefslogtreecommitdiffhomepage
path: root/runopts.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2009-07-06 12:59:13 +0000
committerMatt Johnston <matt@ucc.asn.au>2009-07-06 12:59:13 +0000
commitc742137dc8c8dd2163a2353d3382fdf2cae44c24 (patch)
tree25f52a38fb21d20051e2e44faa40ab25f45a5cad /runopts.h
parent9dc9aff0164ba777ae9806e9608af09aaf1a786e (diff)
New standard linked list to use, rather than adhoc SignKeyList or TCPFwdList
--HG-- branch : agent-client extra : convert_revision : 5465e639cc3f5ee0c6c55f0de6e7b6d5a8769da3
Diffstat (limited to 'runopts.h')
-rw-r--r--runopts.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/runopts.h b/runopts.h
index bc35435..e672a4e 100644
--- a/runopts.h
+++ b/runopts.h
@@ -112,13 +112,13 @@ typedef struct cli_runopts {
int backgrounded;
int is_subsystem;
#ifdef ENABLE_CLI_PUBKEY_AUTH
- struct SignKeyList *privkeys; /* Keys to use for public-key auth */
+ m_list *privkeys; /* Keys to use for public-key auth */
#endif
#ifdef ENABLE_CLI_REMOTETCPFWD
- struct TCPFwdList * remotefwds;
+ m_list * remotefwds;
#endif
#ifdef ENABLE_CLI_LOCALTCPFWD
- struct TCPFwdList * localfwds;
+ m_list * localfwds;
#endif
#ifdef ENABLE_CLI_AGENTFWD
int agent_fwd;