mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
Fix argument parsing for the "core show profile" CLI command
(fixed by rizzo in his branch, team/rizzo/astobj2) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@47369 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -448,13 +448,13 @@ static int handle_show_profile_deprecated(int fd, int argc, char *argv[])
|
||||
|
||||
min = 0;
|
||||
max = prof_data->entries;
|
||||
if (argc >= 3) { /* specific entries */
|
||||
if (isdigit(argv[2][0])) {
|
||||
min = atoi(argv[2]);
|
||||
if (argc == 4 && strcmp(argv[3], "-"))
|
||||
max = atoi(argv[3]);
|
||||
if (argc > 3) { /* specific entries */
|
||||
if (isdigit(argv[3][0])) {
|
||||
min = atoi(argv[3]);
|
||||
if (argc == 5 && strcmp(argv[4], "-"))
|
||||
max = atoi(argv[4]);
|
||||
} else
|
||||
search = argv[2];
|
||||
search = argv[3];
|
||||
}
|
||||
if (max > prof_data->entries)
|
||||
max = prof_data->entries;
|
||||
|
Reference in New Issue
Block a user