Searched refs:tokst_cmd_len (Results 1 – 1 of 1) sorted by relevance
90 size_t tokst_cmd_len; /* Length of original user command, without */ member2438 tokst.tokst_cmd_len = strlen(user_cmd_str); in tokenize_user_cmd()2439 if ((len > 0) && (len < tokst.tokst_cmd_len)) in tokenize_user_cmd()2440 tokst.tokst_cmd_len = len; in tokenize_user_cmd()2441 tokst.tokst_cmd_len++; /* Room for NULL termination */ in tokenize_user_cmd()2442 strbuf_ensure_size(&str, tokst.tokst_cmd_len); in tokenize_user_cmd()2443 (void) strlcpy(str.buf, user_cmd_str, tokst.tokst_cmd_len); in tokenize_user_cmd()2446 if ((tokst.tokst_cmd_len > 1) && in tokenize_user_cmd()2447 (str.buf[tokst.tokst_cmd_len - 2] == '\n')) { in tokenize_user_cmd()2448 tokst.tokst_cmd_len--; in tokenize_user_cmd()[all …]