Module Name: src
Committed By: pooka
Date: Thu Jan 7 22:59:27 UTC 2010
Modified Files:
src/sys/fs/puffs: puffs_msgif.c
Log Message:
Fix variable name in my commit tree too.
To generate a diff of this commit:
cvs rdiff -u -r1.77 -r1.78 src/sys/fs/puffs/puffs_msgif.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/fs/puffs/puffs_msgif.c
diff -u src/sys/fs/puffs/puffs_msgif.c:1.77 src/sys/fs/puffs/puffs_msgif.c:1.78
--- src/sys/fs/puffs/puffs_msgif.c:1.77 Thu Jan 7 22:45:31 2010
+++ src/sys/fs/puffs/puffs_msgif.c Thu Jan 7 22:59:27 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: puffs_msgif.c,v 1.77 2010/01/07 22:45:31 pooka Exp $ */
+/* $NetBSD: puffs_msgif.c,v 1.78 2010/01/07 22:59:27 pooka Exp $ */
/*
* Copyright (c) 2005, 2006, 2007 Antti Kantee. All Rights Reserved.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: puffs_msgif.c,v 1.77 2010/01/07 22:45:31 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: puffs_msgif.c,v 1.78 2010/01/07 22:59:27 pooka Exp $");
#include <sys/param.h>
#include <sys/atomic.h>
@@ -935,7 +935,7 @@
puffsop_flush(pmp, &psopr->psopr_pf);
break;
case PUFFS_SOPREQ_UNMOUNT:
- puffs_msg_sendresp(pmp, &sopreq->psopr_preq, 0);
+ puffs_msg_sendresp(pmp, &psopr->psopr_preq, 0);
unmountme = true;
keeprunning = false;