summaryrefslogtreecommitdiff
path: root/frame.c
diff options
context:
space:
mode:
authorJames Golovich <james@gnuinter.net>2004-05-09 07:51:44 +0000
committerJames Golovich <james@gnuinter.net>2004-05-09 07:51:44 +0000
commit8ef3b1544be0ac8bfcb77f297c2eff8a6f8b3aec (patch)
treee02913e8cd2ec7f6236ac862e98d11dc9fd199ce /frame.c
parent3e3642433bbd87d363394bdf8341a6047f1a9eae (diff)
More ast_strlen_zero changes
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2930 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'frame.c')
-rwxr-xr-xframe.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/frame.c b/frame.c
index b8709eee1..c127ebcdd 100755
--- a/frame.c
+++ b/frame.c
@@ -17,6 +17,7 @@
#include <asterisk/options.h>
#include <asterisk/cli.h>
#include <asterisk/term.h>
+#include <asterisk/utils.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
@@ -703,7 +704,7 @@ void ast_frame_dump(char *name, struct ast_frame *f, char *prefix)
default:
snprintf(ftype, sizeof(ftype), "Unknown Frametype '%d'", f->frametype);
}
- if (strlen(moreinfo))
+ if (!ast_strlen_zero(moreinfo))
ast_verbose("%s [ TYPE: %s (%d) SUBCLASS: %s (%d) '%s' ] [%s]\n",
term_color(cp, prefix, COLOR_BRMAGENTA, COLOR_BLACK, sizeof(cp)),
term_color(cft, ftype, COLOR_BRRED, COLOR_BLACK, sizeof(cft)),