d8a4632c6f
Submitted by: Alexander Pyhalov <alp@rsu.ru> (maintainer)
23 lines
888 B
Text
23 lines
888 B
Text
--- 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");
|