Module Name: src
Committed By: pooka
Date: Wed Mar 31 14:54:07 UTC 2010
Modified Files:
src/usr.sbin/puffs/rump_nqmfs: rump_nqmfs.c
Log Message:
fix typo (at least it was in an error string instead of a comment)
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.sbin/puffs/rump_nqmfs/rump_nqmfs.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/puffs/rump_nqmfs/rump_nqmfs.c
diff -u src/usr.sbin/puffs/rump_nqmfs/rump_nqmfs.c:1.2 src/usr.sbin/puffs/rump_nqmfs/rump_nqmfs.c:1.3
--- src/usr.sbin/puffs/rump_nqmfs/rump_nqmfs.c:1.2 Wed Mar 31 14:49:02 2010
+++ src/usr.sbin/puffs/rump_nqmfs/rump_nqmfs.c Wed Mar 31 14:54:07 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: rump_nqmfs.c,v 1.2 2010/03/31 14:49:02 pooka Exp $ */
+/* $NetBSD: rump_nqmfs.c,v 1.3 2010/03/31 14:54:07 pooka Exp $ */
/*
* Copyright (c) 2010 Antti Kantee. All Rights Reserved.
@@ -117,7 +117,7 @@
membase = mmap(NULL, sb.st_size, PROT_READ | (rdonly ? 0 : PROT_WRITE),
MAP_FILE | (shared ? MAP_SHARED : MAP_PRIVATE), fd, 0);
if (membase == MAP_FAILED)
- err(1, "cannot mmap fpsec");
+ err(1, "cannot mmap fspec");
args.fspec = mntfile;
args.base = membase;