svn commit: r355950 - in head/net/sflowtool: . files

Olli Hauer ohauer at FreeBSD.org
Sat May 31 09:59:26 UTC 2014


Author: ohauer
Date: Sat May 31 09:59:24 2014
New Revision: 355950
URL: http://svnweb.freebsd.org/changeset/ports/355950
QAT: https://qat.redports.org/buildarchive/r355950/

Log:
  - update to version 0.32

Added:
  head/net/sflowtool/files/patch-src__sflowtool.c   (contents, props changed)
Modified:
  head/net/sflowtool/Makefile
  head/net/sflowtool/distinfo

Modified: head/net/sflowtool/Makefile
==============================================================================
--- head/net/sflowtool/Makefile	Sat May 31 09:54:18 2014	(r355949)
+++ head/net/sflowtool/Makefile	Sat May 31 09:59:24 2014	(r355950)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	sflowtool
-PORTVERSION=	3.30
+PORTVERSION=	3.32
 CATEGORIES=	net
 MASTER_SITES=	http://www.inmon.com/bin/
 

Modified: head/net/sflowtool/distinfo
==============================================================================
--- head/net/sflowtool/distinfo	Sat May 31 09:54:18 2014	(r355949)
+++ head/net/sflowtool/distinfo	Sat May 31 09:59:24 2014	(r355950)
@@ -1,2 +1,2 @@
-SHA256 (sflowtool-3.30.tar.gz) = 38e7929889ce4f9de6bc55b61dc209b842902434a822c60bc572a3d9f6c3843c
-SIZE (sflowtool-3.30.tar.gz) = 169194
+SHA256 (sflowtool-3.32.tar.gz) = edb40902e76377b12a08a513bf49776e0a70e43c7f541f77de995cc23ccb7343
+SIZE (sflowtool-3.32.tar.gz) = 171316

Added: head/net/sflowtool/files/patch-src__sflowtool.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/sflowtool/files/patch-src__sflowtool.c	Sat May 31 09:59:24 2014	(r355950)
@@ -0,0 +1,39 @@
+--- ./src/sflowtool.c.orig	2014-05-27 21:09:17.000000000 +0200
++++ ./src/sflowtool.c	2014-05-31 09:15:00.000000000 +0200
+@@ -442,7 +442,7 @@
+ void *my_calloc(size_t bytes) {
+   void *mem = calloc(1, bytes);
+   if(mem == NULL) {
+-    fprintf(ERROUT, "calloc(%u) failed: %s\n", bytes, strerror(errno));
++    fprintf(ERROUT, "calloc(%zu) failed: %s\n", bytes, strerror(errno));
+     exit(-1);
+   }
+   return mem;
+@@ -554,7 +554,7 @@
+   register char c, *r = in, *w = out;
+   int maxlen = (strlen(in) * 3) + 1;
+   if(outlen < maxlen) return "URLEncode: not enough space";
+-  while (c = *r++) {
++  while ((c = *r++)) {
+     if(isalnum(c)) *w++ = c;
+     else if(isspace(c)) *w++ = '+';
+     else {
+@@ -3075,7 +3075,7 @@
+   uint8_t *uuid;
+   char hostname[SFL_MAX_HOSTNAME_LEN+1];
+   char os_release[SFL_MAX_OSRELEASE_LEN+1];
+-  char uuidStr[100];
++  u_char uuidStr[100];
+   if(getString(sample, hostname, SFL_MAX_HOSTNAME_LEN) > 0) {
+     sf_log(sample,"hostname %s\n", hostname);
+   }
+@@ -3921,7 +3921,8 @@
+ static void readPacket(int soc)
+ {
+   struct sockaddr_in6 peer;
+-  int alen, cc;
++  int cc;
++  u_int alen;
+ #define MAX_PKT_SIZ 65536
+   char buf[MAX_PKT_SIZ];
+   alen = sizeof(peer);


More information about the svn-ports-all mailing list