mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2026-02-07 04:20:47 +01:00
Operate command doesn't display input and output arguments
This commit is contained in:
parent
c88074d9c2
commit
683032db93
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ static char *get_path_without_instance(char *path)
|
|||
|
||||
res_path[0] = 0;
|
||||
for (pch = strtok_r(str, ".", &pchr); pch != NULL; pch = strtok_r(NULL, ".", &pchr)) {
|
||||
if (atoi(pch) == 0)
|
||||
if (atoi(pch) == 0 && strcmp(pch, "{i}") != 0)
|
||||
pos += snprintf(&res_path[pos], sizeof(res_path) - pos, "%s%s", pch, (pchr != NULL && *pchr != '\0') ? "." : "");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue