Diff for /src/sys/vfs/nwfs/nwfs_ioctl.c between versions 1.5 and 1.6

version 1.5, 2003/08/07 21:54:35 version 1.6, 2004/04/22 17:56:44
Line 46 Line 46
 #include "nwfs_node.h"  #include "nwfs_node.h"
 #include "nwfs_subr.h"  #include "nwfs_subr.h"
   
   /*
    * nwfs_ioctl(struct vnode *a_vp, u_long a_command, caddr_t a_data,
    *            int a_fflag, struct ucred *a_cred, struct thread *a_td)
    */
 int  int
 nwfs_ioctl(ap)  nwfs_ioctl(struct vop_ioctl_args *ap)
         struct vop_ioctl_args /* {  
                 struct vnode *a_vp;  
                 u_long a_command;  
                 caddr_t a_data;  
                 int a_fflag;  
                 struct ucred *a_cred;  
                 struct thread *a_td;  
         } */ *ap;  
 {  {
         int error;          int error;
         struct thread *td = ap->a_td;          struct thread *td = ap->a_td;

Removed from v.1.5  
changed lines
  Added in v.1.6