summaryrefslogtreecommitdiff
path: root/pbx.c
diff options
context:
space:
mode:
authorJames Golovich <james@gnuinter.net>2004-05-26 19:24:47 +0000
committerJames Golovich <james@gnuinter.net>2004-05-26 19:24:47 +0000
commit7baf86bc8be6d4fff9c5825fc799c09dde024b4c (patch)
treead85971b396f9cf24e420e5d2869b5507f660e3c /pbx.c
parent9432a1c19f08309b296a0c93888e2a505ee985d3 (diff)
Fix comment in pbx.c
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3080 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx.c')
-rwxr-xr-xpbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx.c b/pbx.c
index 11f2dea45..02acc3ded 100755
--- a/pbx.c
+++ b/pbx.c
@@ -2589,7 +2589,7 @@ static int handle_show_dialplan(int fd, int argc, char *argv[])
exten = strsep(&splitter, "@");
context = splitter;
- /* check for length and change to NULL if !strlen() */
+ /* check for length and change to NULL if ast_strlen_zero() */
if (ast_strlen_zero(exten)) exten = NULL;
if (ast_strlen_zero(context)) context = NULL;
} else