Home | History | Annotate | Download | only in pppd

Lines Matching refs:sbuf

1115     struct stat sbuf;
1120 if (fstat(fd, &sbuf) != 0)
1122 if (sbuf.st_uid == uid)
1123 return sbuf.st_mode & S_IRUSR;
1124 if (sbuf.st_gid == getgid())
1125 return sbuf.st_mode & S_IRGRP;
1127 if (sbuf.st_gid == groups[i])
1128 return sbuf.st_mode & S_IRGRP;
1129 return sbuf.st_mode & S_IROTH;