svn commit: r203828 - head/sys/fs/msdosfs

Konstantin Belousov kib at FreeBSD.org
Sat Feb 13 12:50:09 UTC 2010


Author: kib
Date: Sat Feb 13 12:50:09 2010
New Revision: 203828
URL: http://svn.freebsd.org/changeset/base/203828

Log:
  Fix function name in the comment in the second location too.
  
  Submitted by:	ed
  MFC after:	1 week

Modified:
  head/sys/fs/msdosfs/msdosfs_denode.c

Modified: head/sys/fs/msdosfs/msdosfs_denode.c
==============================================================================
--- head/sys/fs/msdosfs/msdosfs_denode.c	Sat Feb 13 12:41:07 2010	(r203827)
+++ head/sys/fs/msdosfs/msdosfs_denode.c	Sat Feb 13 12:50:09 2010	(r203828)
@@ -146,7 +146,7 @@ deget(pmp, dirclust, diroffset, depp)
 	/*
 	 * Do the malloc before the getnewvnode since doing so afterward
 	 * might cause a bogus v_data pointer to get dereferenced
-	 * elsewhere if MALLOC should block.
+	 * elsewhere if malloc should block.
 	 */
 	ldep = malloc(sizeof(struct denode), M_MSDOSFSNODE, M_WAITOK | M_ZERO);
 


More information about the svn-src-all mailing list