Searched defs:tokst_cmd_len (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/elfedit/common/
H A Delfedit.c90 size_t tokst_cmd_len; /* Length of original user command, without */ member in struct:__anon1480
2435 tokst.tokst_cmd_len = strlen(user_cmd_str);
2436 if ((len > 0) && (len < tokst.tokst_cmd_len))
2437 tokst.tokst_cmd_len = len;
2438 tokst.tokst_cmd_len++; /* Room for NULL termination */
2439 strbuf_ensure_size(&str, tokst.tokst_cmd_len);
2440 (void) strlcpy(str.buf, user_cmd_str, tokst.tokst_cmd_len);
2443 if ((tokst.tokst_cmd_len > 1) &&
2444 (str.buf[tokst.tokst_cmd_len - 2] == '\n')) {
2445 tokst.tokst_cmd_len
[all...]

Completed in 74 milliseconds