Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Feb 2016 12:42:17 +0000 (UTC)
From:      Renato Botelho <garga@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r409739 - head/net/dpinger/files
Message-ID:  <201602281242.u1SCgHAn017861@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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];
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602281242.u1SCgHAn017861>