Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 8 Jun 2009 10:53:18 +0000 (UTC)
From:      Luigi Rizzo <luigi@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r193702 - head/sbin/ipfw
Message-ID:  <200906081053.n58ArILB027179@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: luigi
Date: Mon Jun  8 10:53:18 2009
New Revision: 193702
URL: http://svn.freebsd.org/changeset/base/193702

Log:
  add a missing format in a printf
  Detected building with gcc 4.3.3
  
  MFC after:	3 days

Modified:
  head/sbin/ipfw/ipfw2.c

Modified: head/sbin/ipfw/ipfw2.c
==============================================================================
--- head/sbin/ipfw/ipfw2.c	Mon Jun  8 10:43:20 2009	(r193701)
+++ head/sbin/ipfw/ipfw2.c	Mon Jun  8 10:53:18 2009	(r193702)
@@ -508,7 +508,7 @@ print_newports(ipfw_insn_u16 *cmd, int p
 	}
 	sep = " ";
 	for (i = F_LEN((ipfw_insn *)cmd) - 1; i > 0; i--, p += 2) {
-		printf(sep);
+		printf("%s", sep);
 		print_port(proto, p[0]);
 		if (p[0] != p[1]) {
 			printf("-");



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