comparison runopts.h @ 1733:d529a52b2f7c coverity coverity

merge coverity from main
author Matt Johnston <matt@ucc.asn.au>
date Fri, 26 Jun 2020 21:07:34 +0800
parents cc0fc5131c5c
children 5120e22882de
comparison
equal deleted inserted replaced
1643:b59623a64678 1733:d529a52b2f7c
123 buffer * banner; 123 buffer * banner;
124 char * pidfile; 124 char * pidfile;
125 125
126 char * forced_command; 126 char * forced_command;
127 127
128 #if DROPBEAR_PLUGIN
129 char *pubkey_plugin;
130 char *pubkey_plugin_options;
131 #endif
132
128 } svr_runopts; 133 } svr_runopts;
129 134
130 extern svr_runopts svr_opts; 135 extern svr_runopts svr_opts;
131 136
132 void svr_getopts(int argc, char ** argv); 137 void svr_getopts(int argc, char ** argv);
134 139
135 typedef struct cli_runopts { 140 typedef struct cli_runopts {
136 141
137 char *progname; 142 char *progname;
138 char *remotehost; 143 char *remotehost;
139 char *remoteport; 144 const char *remoteport;
140 145
141 char *own_user; 146 char *own_user;
142 char *username; 147 char *username;
143 148
144 char *cmd; 149 char *cmd;