svn commit: r409739 - head/net/dpinger/files

Renato Botelho garga at FreeBSD.org
Sun Feb 28 12:42:18 UTC 2016


Author: garga
Date: Sun Feb 28 12:42:17 2016
New Revision: 409739
URL: https://svnweb.freebsd.org/changeset/ports/409739

Log:
  Add a patch forgotten in update to 1.10, it fixes build on 9.x

Added:
  head/net/dpinger/files/
  head/net/dpinger/files/patch-dpinger.c   (contents, props changed)

Added: head/net/dpinger/files/patch-dpinger.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/dpinger/files/patch-dpinger.c	Sun Feb 28 12:42:17 2016	(r409739)
@@ -0,0 +1,20 @@
+--- dpinger.c.orig	2016-02-28 05:29:33 UTC
++++ dpinger.c
+@@ -1018,7 +1018,7 @@ parse_args(
+ 
+         default:
+             usage();
+-            fatal(NULL);
++            exit(EXIT_FAILURE);
+         }
+     }
+ 
+@@ -1026,7 +1026,7 @@ parse_args(
+     if (argc != optind + 1)
+     {
+         usage();
+-        fatal(NULL);
++        exit(EXIT_FAILURE);
+     }
+     dest_arg = argv[optind];
+ 


More information about the svn-ports-all mailing list