svn commit: r286606 - head/sbin/ipfw

Mark Felder feld at FreeBSD.org
Mon Aug 10 22:02:02 UTC 2015


Author: feld (ports committer)
Date: Mon Aug 10 22:02:01 2015
New Revision: 286606
URL: https://svnweb.freebsd.org/changeset/base/286606

Log:
  sbin/ipfw fix typo: info -> into
  
  example:
  
  DEPRECATED: inserting data into non-existent table sshguard. (auto-created)
  
  Approved by:	bdrewery

Modified:
  head/sbin/ipfw/tables.c

Modified: head/sbin/ipfw/tables.c
==============================================================================
--- head/sbin/ipfw/tables.c	Mon Aug 10 21:36:51 2015	(r286605)
+++ head/sbin/ipfw/tables.c	Mon Aug 10 22:02:01 2015	(r286606)
@@ -930,7 +930,7 @@ table_modify_record(ipfw_obj_header *oh,
 			xi.vmask = vmask;
 			strlcpy(xi.tablename, oh->ntlv.name,
 			    sizeof(xi.tablename));
-			fprintf(stderr, "DEPRECATED: inserting data info "
+			fprintf(stderr, "DEPRECATED: inserting data into "
 			    "non-existent table %s. (auto-created)\n",
 			    xi.tablename);
 			table_do_create(oh, &xi);


More information about the svn-src-head mailing list