summaryrefslogtreecommitdiff
path: root/community/ucarp/02-fix-downscript-on-error.c
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-07 11:02:07 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-07 11:02:07 -0300
commit8a3d4ee5105eefa2136eb7ae83e69d01f29864c3 (patch)
tree8be9a06d3b2d8cade4b5dba48e040c632bd33850 /community/ucarp/02-fix-downscript-on-error.c
parent404b7ff94ece6bb2ce0e9df042ac1fe798137c83 (diff)
parentd1d87d2ac643e3dabc251f3cec7d3b00e29b282c (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/zathura/PKGBUILD extra/gnome-desktop-sharp/PKGBUILD extra/gnome-python-desktop/PKGBUILD extra/libdvdread/PKGBUILD extra/mjpegtools/PKGBUILD extra/postgresql/PKGBUILD
Diffstat (limited to 'community/ucarp/02-fix-downscript-on-error.c')
-rw-r--r--community/ucarp/02-fix-downscript-on-error.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/community/ucarp/02-fix-downscript-on-error.c b/community/ucarp/02-fix-downscript-on-error.c
new file mode 100644
index 000000000..08af568b4
--- /dev/null
+++ b/community/ucarp/02-fix-downscript-on-error.c
@@ -0,0 +1,12 @@
+--- ucarp-1.5.1.orig/src/carp.c
++++ ucarp-1.5.1/src/carp.c
+@@ -843,6 +843,9 @@
+ if ((pfds[0].revents & (POLLERR | POLLHUP)) != 0) {
+ logfile(LOG_ERR, _("exiting: pfds[0].revents = %d"),
+ pfds[0].revents);
++ if ((sc.sc_state != BACKUP) && (shutdown_at_exit != 0)) {
++ (void) spawn_handler(dev_desc_fd, downscript);
++ }
+ break;
+ }
+ if (gettimeofday(&now, NULL) != 0) {