summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjasper <jasper@openbsd.org>2009-08-13 12:20:52 +0000
committerjasper <jasper@openbsd.org>2009-08-13 12:20:52 +0000
commit3dab9bf77a0ef6c453c5f48fdbaa0358cb036f9d (patch)
tree570d760103858f516961b77c05eb4367407794cb
parentIf the client passes zero for the window size in the identify message (which it (diff)
downloadwireguard-openbsd-3dab9bf77a0ef6c453c5f48fdbaa0358cb036f9d.tar.xz
wireguard-openbsd-3dab9bf77a0ef6c453c5f48fdbaa0358cb036f9d.zip
- missing printf("\n"); after calling lockmgr_printinfo()
"do it" thib@
-rw-r--r--sys/msdosfs/msdosfs_vnops.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/msdosfs/msdosfs_vnops.c b/sys/msdosfs/msdosfs_vnops.c
index 76081302499..c3fd452f40b 100644
--- a/sys/msdosfs/msdosfs_vnops.c
+++ b/sys/msdosfs/msdosfs_vnops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: msdosfs_vnops.c,v 1.68 2009/08/09 21:58:00 martynas Exp $ */
+/* $OpenBSD: msdosfs_vnops.c,v 1.69 2009/08/13 12:20:52 jasper Exp $ */
/* $NetBSD: msdosfs_vnops.c,v 1.63 1997/10/17 11:24:19 ws Exp $ */
/*-
@@ -1773,6 +1773,7 @@ msdosfs_print(v)
VOP_ISLOCKED(ap->a_vp) ? "(LOCKED)" : "");
#ifdef DIAGNOSTIC
lockmgr_printinfo(&dep->de_lock);
+ printf("\n");
#endif
return (0);