From de6470e70144dd82a2386b826e945ac456149b5f Mon Sep 17 00:00:00 2001 From: christos Date: Sat, 15 Apr 2006 02:49:25 +0000 Subject: [PATCH] m_freem takes one arg. --- sys/nfs/nfs_bootparam.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/nfs/nfs_bootparam.c b/sys/nfs/nfs_bootparam.c index a47708a0374e..758a3f00bc47 100644 --- a/sys/nfs/nfs_bootparam.c +++ b/sys/nfs/nfs_bootparam.c @@ -1,4 +1,4 @@ -/* $NetBSD: nfs_bootparam.c,v 1.28 2006/04/15 02:48:32 christos Exp $ */ +/* $NetBSD: nfs_bootparam.c,v 1.29 2006/04/15 02:49:25 christos Exp $ */ /*- * Copyright (c) 1995, 1997 The NetBSD Foundation, Inc. @@ -41,7 +41,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: nfs_bootparam.c,v 1.28 2006/04/15 02:48:32 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: nfs_bootparam.c,v 1.29 2006/04/15 02:49:25 christos Exp $"); #include "opt_nfs_boot.h" #include "opt_inet.h" @@ -336,7 +336,7 @@ bp_whoami(bpsin, my_ip, gw_ip, l) error = krpc_call(bpsin, PMAPPROG, PMAPVERS, PMAPPROC_CALLIT, &m, &from, l); if (error) { - m_freem(m, MT_DATA); + m_freem(m); return error; }