Fix comment in pbx.c

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3080 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
James Golovich
2004-05-26 19:24:47 +00:00
parent 9432a1c19f
commit 7baf86bc8b

2
pbx.c
View File

@@ -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