Use ast_strlen_zero in logger.c

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2907 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
James Golovich
2004-05-06 20:23:48 +00:00
parent f1d0d949dc
commit bb8d1dbb3a

View File

@@ -22,6 +22,7 @@
#include <asterisk/config.h>
#include <asterisk/term.h>
#include <asterisk/cli.h>
#include <asterisk/utils.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
@@ -126,7 +127,7 @@ static struct logchannel *make_logchannel(char *channel, char *components, int l
char *facility;
CODE *cptr;
if (!strlen(channel))
if (ast_strlen_zero(channel))
return NULL;
chan = malloc(sizeof(struct logchannel));