[BACK]Return to tmpfs_vnops.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / fs / tmpfs

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/fs/tmpfs/tmpfs_vnops.c between version 1.72 and 1.73

version 1.72, 2010/07/02 03:29:47 version 1.73, 2010/07/14 16:03:49
Line 179  tmpfs_lookup(void *v)
Line 179  tmpfs_lookup(void *v)
                 goto done;                  goto done;
   
         } else if (cnp->cn_namelen == 1 && cnp->cn_nameptr[0] == '.') {          } else if (cnp->cn_namelen == 1 && cnp->cn_nameptr[0] == '.') {
                   if ((cnp->cn_flags & ISLASTCN) &&
                       (cnp->cn_nameiop == RENAME)) {
                           error = EISDIR;
                           goto out;
                   }
                 vref(dvp);                  vref(dvp);
                 *vpp = dvp;                  *vpp = dvp;
                 error = 0;                  error = 0;

Legend:
Removed from v.1.72  
changed lines
  Added in v.1.73

CVSweb <webmaster@jp.NetBSD.org>