summaryrefslogtreecommitdiff
path: root/databases/postgresql-repmgr/files
diff options
context:
space:
mode:
authorFrederic Culot <culot@FreeBSD.org>2011-04-24 11:05:17 +0000
committerFrederic Culot <culot@FreeBSD.org>2011-04-24 11:05:17 +0000
commitc859eb4c2d584561e6fa39444b193a563105d616 (patch)
tree02cc96cadd90ac8998562a793b65fed85462b3f6 /databases/postgresql-repmgr/files
parentreal fix with new exiv version (diff)
- Update to 1.1.0 [1]
- Fix typo in RUN_DEPENDS PR: ports/156479 [1] Submitted by: Alexander Pyhalov <alp@sfedu.ru> (maintainer)
Notes
Notes: svn path=/head/; revision=273131
Diffstat (limited to 'databases/postgresql-repmgr/files')
-rw-r--r--databases/postgresql-repmgr/files/patch-repmgrd.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/databases/postgresql-repmgr/files/patch-repmgrd.c b/databases/postgresql-repmgr/files/patch-repmgrd.c
deleted file mode 100644
index 1c2ae8fb41f5..000000000000
--- a/databases/postgresql-repmgr/files/patch-repmgrd.c
+++ /dev/null
@@ -1,16 +0,0 @@
---- repmgrd.c 2010-12-06 05:09:48.000000000 +0300
-+++ repmgrd.c 2011-01-16 12:34:49.345998423 +0300
-@@ -173,7 +173,12 @@
- }
-
- /* close the connection to the database and cleanup */
-- CloseConnections();
-+ if (PQisBusy(primaryConn) == 1)
-+ CancelQuery();
-+ if (myLocalConn != NULL)
-+ PQfinish(myLocalConn);
-+ if (primaryConn != NULL && myLocalMode != PRIMARY_MODE)
-+ PQfinish(primaryConn);
-
- return 0;
- }