aboutsummaryrefslogtreecommitdiffstats
path: root/pbx.c
diff options
context:
space:
mode:
authorcitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-05-26 19:24:47 +0000
committercitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-05-26 19:24:47 +0000
commit1b15933d65050a417f2f601be0c49e1e5905f36c (patch)
treead85971b396f9cf24e420e5d2869b5507f660e3c /pbx.c
parent02cb9c996bce3045e471f9167ff3b302251206ab (diff)
Fix comment in pbx.c
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3080 f38db490-d61c-443f-a65b-d21fe96a405b
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