summaryrefslogtreecommitdiff
path: root/apps/app_sql_postgres.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-01-01 21:26:37 +0000
committerMark Spencer <markster@digium.com>2005-01-01 21:26:37 +0000
commit7abe9e6c16bd11cfaab3d150a52145b4767b6dd2 (patch)
tree184bdb93f104282b1ba02051f30eb58fda6c4c09 /apps/app_sql_postgres.c
parentb87a6928044623e2ffea7b6b477317ff1c827540 (diff)
List improvements from kpfleming (bugs #3166,#3140)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4629 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_sql_postgres.c')
-rwxr-xr-xapps/app_sql_postgres.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_sql_postgres.c b/apps/app_sql_postgres.c
index f2e99dea4..ddbd1ca73 100755
--- a/apps/app_sql_postgres.c
+++ b/apps/app_sql_postgres.c
@@ -191,7 +191,7 @@ static int del_identifier(int identifier,int identifier_type) {
AST_LIST_TRAVERSE(headp,i,entries) {
if ((i->identifier==identifier) &&
(i->identifier_type==identifier_type)) {
- AST_LIST_REMOVE(headp,i,ast_PGSQL_id,entries);
+ AST_LIST_REMOVE(headp,i,entries);
free(i);
found=1;
break;