svn commit: r293004 - stable/9/contrib/bsnmp/snmpd

Garrett Cooper ngie at FreeBSD.org
Thu Dec 31 20:51:06 UTC 2015


Author: ngie
Date: Thu Dec 31 20:51:05 2015
New Revision: 293004
URL: https://svnweb.freebsd.org/changeset/base/293004

Log:
  MFstable/10 r292998:
  
  MFC r292710:
  
  Remove unused function `act_getkernstring`
  
  This fixes a clang -Wunused warning
  
  Differential Revision: https://reviews.freebsd.org/D4697
  Reported by: Jenkins
  Reviewed by: araujo, bapt
  Sponsored by: EMC / Isilon Storage Division

Modified:
  stable/9/contrib/bsnmp/snmpd/action.c
Directory Properties:
  stable/9/   (props changed)
  stable/9/contrib/   (props changed)
  stable/9/contrib/bsnmp/   (props changed)

Modified: stable/9/contrib/bsnmp/snmpd/action.c
==============================================================================
--- stable/9/contrib/bsnmp/snmpd/action.c	Thu Dec 31 20:25:26 2015	(r293003)
+++ stable/9/contrib/bsnmp/snmpd/action.c	Thu Dec 31 20:51:05 2015	(r293004)
@@ -60,29 +60,6 @@ static const struct asn_oid
 #endif
 
 /*
- * Get a string value from the KERN sysctl subtree.
- */
-static char *
-act_getkernstring(int id)
-{
-	int mib[2];
-	size_t len;
-	char *string;
-
-	mib[0] = CTL_KERN;
-	mib[1] = id;
-	if (sysctl(mib, 2, NULL, &len, NULL, 0) != 0)
-		return (NULL);
-	if ((string = malloc(len)) == NULL)
-		return (NULL);
-	if (sysctl(mib, 2, string, &len, NULL, 0) != 0) {
-		free(string);
-		return (NULL);
-	}
-	return (string);
-}
-
-/*
  * Get an integer value from the KERN sysctl subtree.
  */
 static char *


More information about the svn-src-stable mailing list