Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/nfs/nfs_bootdhcp.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/nfs/nfs_bootdhcp.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.47 retrieving revision 1.48 diff -u -p -r1.47 -r1.48 --- src/sys/nfs/nfs_bootdhcp.c 2009/05/05 12:48:31 1.47 +++ src/sys/nfs/nfs_bootdhcp.c 2009/05/06 05:34:12 1.48 @@ -1,4 +1,4 @@ -/* $NetBSD: nfs_bootdhcp.c,v 1.47 2009/05/05 12:48:31 cegger Exp $ */ +/* $NetBSD: nfs_bootdhcp.c,v 1.48 2009/05/06 05:34:12 cegger Exp $ */ /*- * Copyright (c) 1995, 1997 The NetBSD Foundation, Inc. @@ -44,7 +44,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: nfs_bootdhcp.c,v 1.47 2009/05/05 12:48:31 cegger Exp $"); +__KERNEL_RCSID(0, "$NetBSD: nfs_bootdhcp.c,v 1.48 2009/05/06 05:34:12 cegger Exp $"); #ifdef _KERNEL_OPT #include "opt_nfs_boot.h" @@ -325,12 +325,12 @@ bootpcheck(struct mbuf *m, void *context * Is this a valid reply? */ if (m->m_pkthdr.len < BOOTP_SIZE_MIN) { - DPRINTF(("bootpcheck: short packet %d < %d\n", + DPRINTF(("bootpcheck: short packet %d < %zu\n", m->m_pkthdr.len, BOOTP_SIZE_MIN)); return (-1); } if (m->m_pkthdr.len > BOOTP_SIZE_MAX) { - DPRINTF(("Bootpcheck: long packet %d > %d\n", + DPRINTF(("Bootpcheck: long packet %d > %zu\n", m->m_pkthdr.len, BOOTP_SIZE_MAX)); return (-1); }