From 6f39c1a1fe4135713aa6e614250c191118d90350 Mon Sep 17 00:00:00 2001 From: Jeff Roberson Date: Tue, 1 Apr 2003 09:23:24 +0000 Subject: [PATCH] - smb_proc_intr is now spelled smb_td_intr. Noticed by: phk Pointy hat to: jeffr --- sys/fs/smbfs/smbfs_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/fs/smbfs/smbfs_io.c b/sys/fs/smbfs/smbfs_io.c index a35932b5313..5e735c09cc8 100644 --- a/sys/fs/smbfs/smbfs_io.c +++ b/sys/fs/smbfs/smbfs_io.c @@ -688,7 +688,7 @@ smbfs_vinvalbuf(vp, flags, cred, td, intrflg) while (np->n_flag & NFLUSHINPROG) { np->n_flag |= NFLUSHWANT; error = tsleep(&np->n_flag, PRIBIO + 2, "smfsvinv", slptimeo); - error = smb_proc_intr(td->td_proc); + error = smb_td_intr(td->td_proc); if (error == EINTR && intrflg) return EINTR; } -- 2.45.2