Download raw body.
sys/nfs_debug: fixed a typo which brokes show nfsreq /f
tech@,
I think I had spoted a typo in nfs_debug which makes show nfsreq /f a bit
difficult to read and use.
Ok?
diff --git sys/nfs/nfs_debug.c sys/nfs/nfs_debug.c
index 0e73ebf7d7a..d5ba2fbf268 100644
--- sys/nfs/nfs_debug.c
+++ sys/nfs/nfs_debug.c
@@ -49,7 +49,7 @@ nfs_request_print(void *v, int full, int (*pr)(const char *, ...))
rep->r_procp);
if (full) {
- (*pr)("mreq %p mrep %p md %p nfsmount %p vnode %p timer %i",
+ (*pr)("mreq %p mrep %p md %p nfsmount %p vnode %p timer %i"
" rtt %i\n",
rep->r_mreq, rep->r_mrep, rep->r_md, rep->r_nmp,
rep->r_vp, rep->r_timer, rep->r_rtt);
--
wbr, Kirill
sys/nfs_debug: fixed a typo which brokes show nfsreq /f