svn commit: r228674 - head/usr.sbin/route6d

Dimitry Andric dim at FreeBSD.org
Sun Dec 18 00:03:03 UTC 2011


Author: dim
Date: Sun Dec 18 00:03:03 2011
New Revision: 228674
URL: http://svn.freebsd.org/changeset/base/228674

Log:
  In usr.sbin/route6d/route6d.c, use the correct printf length modifier
  for an ssize_t.
  
  MFC after:	1 week

Modified:
  head/usr.sbin/route6d/route6d.c

Modified: head/usr.sbin/route6d/route6d.c
==============================================================================
--- head/usr.sbin/route6d/route6d.c	Sat Dec 17 23:46:47 2011	(r228673)
+++ head/usr.sbin/route6d/route6d.c	Sun Dec 18 00:03:03 2011	(r228674)
@@ -1238,7 +1238,7 @@ riprecv()
 	if (iff_find(ifcp, 'N') != NULL)
 		return;
 
-	tracet(1, "Recv(%s): from %s.%d info(%d)\n",
+	tracet(1, "Recv(%s): from %s.%d info(%zd)\n",
 	    ifcp->ifc_name, inet6_n2p(&nh), ntohs(fsock.sin6_port), nn);
 
 	t = time(NULL);


More information about the svn-src-head mailing list