Skip to content
Snippets Groups Projects
Commit fe1366c2 authored by Olle Johansson's avatar Olle Johansson
Browse files

Declaring conn and result static to avoid collission with realtime driver (issue 6336, pressureman)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8523 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 9863ed46
No related branches found
No related tags found
No related merge requests found
/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (C) 2003 - 2005
* Copyright (C) 2003 - 2006
*
* Matthew D. Hardeman <mhardemn@papersoft.com>
* Adapted from the MySQL CDR logger originally by James Sharp
......@@ -64,8 +64,8 @@ static int connected = 0;
AST_MUTEX_DEFINE_STATIC(pgsql_lock);
PGconn *conn;
PGresult *result;
static PGconn *conn;
static PGresult *result;
static int pgsql_log(struct ast_cdr *cdr)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment