- smb_proc_intr is now spelled smb_td_intr.

Noticed by:	phk
Pointy hat to:	jeffr
This commit is contained in:
jeff 2003-04-01 09:23:24 +00:00
parent 3c4f704ebe
commit a0a1f8446c

View File

@ -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;
}