summaryrefslogtreecommitdiff
path: root/main/asterisk.c
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2006-11-07 23:14:04 +0000
committerLuigi Rizzo <rizzo@icir.org>2006-11-07 23:14:04 +0000
commitbdc0180292d35d60f681dbe5642febbaa68623a6 (patch)
tree6a36946532d516f0b7c4b472cf7a523b532eebac /main/asterisk.c
parent6b459ebd0c2a0d9a9363a014f9057aabcfa1e73d (diff)
fix "core show profile" parsing.
Needs to go in 1.4 too, but ENOTIME now git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@47300 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/asterisk.c')
-rw-r--r--main/asterisk.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/main/asterisk.c b/main/asterisk.c
index 5d3e57210..914ee9dbd 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -447,13 +447,13 @@ static int handle_show_profile(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;