diff options
Diffstat (limited to 'cli/src/cli-cmd.c')
| -rw-r--r-- | cli/src/cli-cmd.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/src/cli-cmd.c b/cli/src/cli-cmd.c index a1e4e909a0d..8a750414108 100644 --- a/cli/src/cli-cmd.c +++ b/cli/src/cli-cmd.c @@ -48,7 +48,7 @@ cli_cmd_needs_connection (struct cli_cmd_word *word)          if (!strcasecmp ("exit", word->word))                  return 0; -        return CLI_DEFAULT_CONN_TIMEOUT; +        return cli_default_conn_timeout;  }  int @@ -371,9 +371,9 @@ cli_cmd_submit (struct rpc_clnt* rpc, void *req, call_frame_t *frame,          if ((GLUSTER_CLI_PROFILE_VOLUME == procnum) ||              (GLUSTER_CLI_HEAL_VOLUME == procnum) ||              (GLUSTER_CLI_GANESHA == procnum)) -                timeout = CLI_TEN_MINUTES_TIMEOUT; +                timeout = cli_ten_minutes_timeout;          else -                timeout = CLI_DEFAULT_CMD_TIMEOUT; +                timeout = cli_default_conn_timeout;          cli_cmd_lock ();          cmd_sent = 0;  | 
