projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a53765b
)
Minor command completion tweak (bug #988 bis)
author
Mark Spencer
<markster@digium.com>
Thu, 18 Nov 2004 04:11:51 +0000
(
04:11
+0000)
committer
Mark Spencer
<markster@digium.com>
Thu, 18 Nov 2004 04:11:51 +0000
(
04:11
+0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4287
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
cli.c
patch
|
blob
|
history
diff --git
a/cli.c
b/cli.c
index
bf8e522
..
9a7128e
100755
(executable)
--- a/
cli.c
+++ b/
cli.c
@@
-1107,7
+1107,7
@@
char **ast_cli_completion_matches(char *text, char *word)
prevstr = match_list[1];
max_equal = strlen(prevstr);
for (; which <= matches; which++) {
- for (i = 0; i < max_equal && prevstr[i] == match_list[which][i]; i++)
+ for (i = 0; i < max_equal && toupper(prevstr[i]) == toupper(match_list[which][i]); i++)
continue;
max_equal = i;
}