svn commit: r307628 - head/sys/netpfil/ipfw

Andrey V. Elsukov ae at FreeBSD.org
Wed Oct 19 11:51:19 UTC 2016


Author: ae
Date: Wed Oct 19 11:51:17 2016
New Revision: 307628
URL: https://svnweb.freebsd.org/changeset/base/307628

Log:
  Fix `ipfw table lookup` handler to return entry value, but not its index.
  
  Submitted by:	loos
  MFC after:	1 week

Modified:
  head/sys/netpfil/ipfw/ip_fw_table.c

Modified: head/sys/netpfil/ipfw/ip_fw_table.c
==============================================================================
--- head/sys/netpfil/ipfw/ip_fw_table.c	Wed Oct 19 11:21:23 2016	(r307627)
+++ head/sys/netpfil/ipfw/ip_fw_table.c	Wed Oct 19 11:51:17 2016	(r307628)
@@ -1087,6 +1087,7 @@ find_table_entry(struct ip_fw_chain *ch,
 	struct table_config *tc;
 	struct table_algo *ta;
 	struct table_info *kti;
+	struct table_value *pval;
 	struct namedobj_instance *ni;
 	int error;
 	size_t sz;
@@ -1132,7 +1133,10 @@ find_table_entry(struct ip_fw_chain *ch,
 		return (ENOTSUP);
 
 	error = ta->find_tentry(tc->astate, kti, tent);
-
+	if (error == 0) {
+		pval = get_table_value(ch, tc, tent->v.kidx);
+		ipfw_export_table_value_v1(pval, &tent->v.value);
+	}
 	IPFW_UH_RUNLOCK(ch);
 
 	return (error);


More information about the svn-src-all mailing list