From: Jouni Malinen Date: Sun, 16 Oct 2016 09:21:07 +0000 (+0300) Subject: hostapd_cli: Mark number of char *cmd constant X-Git-Tag: hostap_2_7~2217 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e097556eef432911a108e5f9f5936438ae83d0c6;p=thirdparty%2Fhostap.git hostapd_cli: Mark number of char *cmd constant Signed-off-by: Jouni Malinen --- diff --git a/hostapd/hostapd_cli.c b/hostapd/hostapd_cli.c index 88a5ee14b..419926777 100644 --- a/hostapd/hostapd_cli.c +++ b/hostapd/hostapd_cli.c @@ -187,7 +187,7 @@ static void hostapd_cli_msg_cb(char *msg, size_t len) } -static int _wpa_ctrl_command(struct wpa_ctrl *ctrl, char *cmd, int print) +static int _wpa_ctrl_command(struct wpa_ctrl *ctrl, const char *cmd, int print) { char buf[4096]; size_t len; @@ -215,13 +215,13 @@ static int _wpa_ctrl_command(struct wpa_ctrl *ctrl, char *cmd, int print) } -static inline int wpa_ctrl_command(struct wpa_ctrl *ctrl, char *cmd) +static inline int wpa_ctrl_command(struct wpa_ctrl *ctrl, const char *cmd) { return _wpa_ctrl_command(ctrl, cmd, 1); } -static int hostapd_cli_cmd(struct wpa_ctrl *ctrl, const char *cmd, +static int hostapd_cli_cmd(struct wpa_ctrl *ctrl, const const char *cmd, int min_args, int argc, char *argv[]) { char buf[4096]; @@ -750,7 +750,7 @@ static int hostapd_cli_cmd_get_config(struct wpa_ctrl *ctrl, int argc, } -static int wpa_ctrl_command_sta(struct wpa_ctrl *ctrl, char *cmd, +static int wpa_ctrl_command_sta(struct wpa_ctrl *ctrl, const char *cmd, char *addr, size_t addr_len, int print) { char buf[4096], *pos;