diff options
-rw-r--r-- | src/fe-common/core/completion.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/fe-common/core/completion.c b/src/fe-common/core/completion.c index aa1859c7..70415113 100644 --- a/src/fe-common/core/completion.c +++ b/src/fe-common/core/completion.c @@ -386,8 +386,10 @@ GList *completion_get_options(const char *cmd, const char *option) list = NULL; len = strlen(option); for (tmp = rec->options; *tmp != NULL; tmp++) { - if (len == 0 || g_strncasecmp(*tmp, option, len) == 0) - list = g_list_append(list, g_strconcat("-", *tmp + iscmdtype(**tmp), NULL)); + const char *optname = *tmp + iscmdtype(**tmp); + + if (len == 0 || g_strncasecmp(optname, option, len) == 0) + list = g_list_append(list, g_strconcat("-", optname, NULL)); } return list; |