[BACK]Return to tmux.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/tmux.c between version 1.133 and 1.134

version 1.133, 2015/01/19 09:53:15 version 1.134, 2015/01/19 09:57:33
Line 146 
Line 146 
                 errno = ENOTDIR;                  errno = ENOTDIR;
                 return (NULL);                  return (NULL);
         }          }
         if (sb.st_uid != uid || (sb.st_mode & (S_IRWXG|S_IRWXO)) != 0) {          if (sb.st_uid != uid || (sb.st_mode & S_IRWXO) != 0) {
                 errno = EACCES;                  errno = EACCES;
                 return (NULL);                  return (NULL);
         }          }

Legend:
Removed from v.1.133  
changed lines
  Added in v.1.134