Use ast_strlen_zero in logger.c

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2907 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
James Golovich 21 years ago
parent f1d0d949dc
commit bb8d1dbb3a

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

Loading…
Cancel
Save