mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
formatting tweaks and constification
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@249058 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -16,8 +16,8 @@
|
||||
* at the top of the source tree.
|
||||
*/
|
||||
|
||||
/*! \file
|
||||
*
|
||||
/*!
|
||||
* \file
|
||||
* \brief ODBC CDR Backend
|
||||
*
|
||||
* \author Brian K. West <brian@bkw.org>
|
||||
@@ -37,8 +37,6 @@
|
||||
|
||||
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
|
||||
#include <time.h>
|
||||
|
||||
#include "asterisk/config.h"
|
||||
#include "asterisk/channel.h"
|
||||
#include "asterisk/cdr.h"
|
||||
@@ -47,8 +45,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
||||
|
||||
#define DATE_FORMAT "%Y-%m-%d %T"
|
||||
|
||||
static char *name = "ODBC";
|
||||
static char *config_file = "cdr_odbc.conf";
|
||||
static const char name[] = "ODBC";
|
||||
static const char config_file[] = "cdr_odbc.conf";
|
||||
static char *dsn = NULL, *table = NULL;
|
||||
|
||||
enum {
|
||||
|
Reference in New Issue
Block a user