Minor file.c cleanup for valgrind, log PRI event properly

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2189 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer 2004-02-18 16:32:49 +00:00
parent f285c61830
commit 89c76a80f2
2 changed files with 2 additions and 2 deletions

View File

@ -6661,7 +6661,7 @@ static void *pri_dchannel(void *vpri)
x = 0;
res = ioctl(pri->fd, ZT_GETEVENT, &x);
if (x)
printf("PRI got event: %d\n", x);
ast_log(LOG_NOTICE, "PRI got event: %d on span %d\n", x, pri->span);
if (option_debug)
ast_log(LOG_DEBUG, "Got event %s (%d) on D-channel for span %d\n", event2str(x), x, pri->span);
}

2
file.c
View File

@ -274,7 +274,7 @@ static int copy(char *infile, char *outfile)
static char *build_filename(char *filename, char *ext)
{
char *fn;
char tmp[AST_CONFIG_MAX_PATH];
char tmp[AST_CONFIG_MAX_PATH]="";
snprintf(tmp,sizeof(tmp)-1,"%s/%s",(char *)ast_config_AST_VAR_DIR,"sounds");
fn = malloc(strlen(tmp) + strlen(filename) + strlen(ext) + 10);
if (fn) {