aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-01 21:26:37 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-01-01 21:26:37 +0000
commit7e69743ca3c2b43fb91fedfe21b60811c25d1ffe (patch)
tree184bdb93f104282b1ba02051f30eb58fda6c4c09 /apps
parent35203c4a661339f87eac939a524d18f217d836e8 (diff)
List improvements from kpfleming (bugs #3166,#3140)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4629 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-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;