Log that we are unregistering cdr module (bug 1460)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2729 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
James Golovich 2004-04-21 04:25:44 +00:00
parent 22411494aa
commit 0f3f7eee9a
1 changed files with 3 additions and 0 deletions

3
cdr.c
View File

@ -20,6 +20,7 @@
#include <asterisk/logger.h>
#include <asterisk/callerid.h>
#include <asterisk/causes.h>
#include <asterisk/options.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
@ -94,6 +95,8 @@ void ast_cdr_unregister(char *name)
}
i = i->next;
}
if (option_verbose > 1)
ast_verbose(VERBOSE_PREFIX_2 "Unregistered '%s' CDR backend\n", name);
ast_mutex_unlock(&cdrlock);
if (i)
free(i);