From e097556eef432911a108e5f9f5936438ae83d0c6 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 16 Oct 2016 12:21:07 +0300 Subject: [PATCH] hostapd_cli: Mark number of char *cmd constant Signed-off-by: Jouni Malinen --- hostapd/hostapd_cli.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;