From d8a4632c6f00535e6fe9a35eddd378e21c1f5d65 Mon Sep 17 00:00:00 2001 From: Pav Lucistnik Date: Fri, 30 Sep 2011 18:52:32 +0000 Subject: - Unbreak on FreeBSD 7 Submitted by: Alexander Pyhalov (maintainer) --- databases/postgresql-repmgr/files/patch-strnlen | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 databases/postgresql-repmgr/files/patch-strnlen (limited to 'databases/postgresql-repmgr/files') diff --git a/databases/postgresql-repmgr/files/patch-strnlen b/databases/postgresql-repmgr/files/patch-strnlen new file mode 100644 index 000000000000..5590e542e2d7 --- /dev/null +++ b/databases/postgresql-repmgr/files/patch-strnlen @@ -0,0 +1,23 @@ +--- config.orig.c 2011-03-09 23:27:29.000000000 +0300 ++++ config.c 2011-09-30 08:30:35.000000000 +0400 +@@ -77,7 +77,7 @@ + fclose (fp); + + /* Check config settings */ +- if (strnlen(options->cluster_name, MAXLEN)==0) ++ if (strlen(options->cluster_name)==0) + { + fprintf(stderr, "Cluster name is missing. " + "Check the configuration file.\n"); +diff -ru /var/tmp/usr/ports/databases/postgresql-repmgr/work/repmgr-1.1.0/repmgr.c /var/tmp/usr/ports/databases/postgresql-repmgr/work/repmgr-1.1.0.patched/repmgr.c +--- repmgr.orig.c 2011-03-09 23:27:29.000000000 +0300 ++++ repmgr.c 2011-09-30 08:30:19.000000000 +0400 +@@ -1438,7 +1438,7 @@ + char host_string[MAXLEN]; + int r; + +- if (strnlen(options.rsync_options, MAXLEN) == 0) ++ if (strlen(options.rsync_options) == 0) + maxlen_snprintf( + rsync_flags, "%s", + "--archive --checksum --compress --progress --rsh=ssh"); -- cgit v1.2.3