From: James Golovich Date: Wed, 26 May 2004 19:24:47 +0000 (+0000) Subject: Fix comment in pbx.c X-Git-Tag: 1.0.0-rc1~373 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7baf86bc8be6d4fff9c5825fc799c09dde024b4c;p=thirdparty%2Fasterisk.git Fix comment in pbx.c git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3080 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/pbx.c b/pbx.c index 11f2dea453..02acc3ded4 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