2014-07-26 10:31:44 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
eprintf("usage: %s [n|y]\n", argv0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
struct stat sb;
|
|
|
|
mode_t mode;
|
|
|
|
|
|
|
|
ARGBEGIN {
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
|
|
|
|
|
|
|
if (argc > 1)
|
|
|
|
usage();
|
|
|
|
|
2014-08-04 15:59:06 -04:00
|
|
|
if (isatty(STDERR_FILENO) == 0)
|
2014-08-04 16:02:28 -04:00
|
|
|
eprintf("stderr: not a tty\n");
|
2014-07-26 10:31:44 -04:00
|
|
|
|
2014-08-04 16:02:28 -04:00
|
|
|
if (fstat(STDERR_FILENO, &sb) < 0)
|
|
|
|
eprintf("fstat stderr:");
|
2014-07-26 10:31:44 -04:00
|
|
|
|
|
|
|
if (argc == 0) {
|
|
|
|
puts(sb.st_mode & (S_IWGRP | S_IWOTH) ? "is y" : "is n");
|
2014-10-02 18:45:25 -04:00
|
|
|
return 0;
|
2014-07-26 10:31:44 -04:00
|
|
|
}
|
|
|
|
|
2014-07-26 10:51:21 -04:00
|
|
|
if (argv[0][0] == 'y' && argv[0][1] == '\0')
|
2014-07-26 10:31:44 -04:00
|
|
|
mode = sb.st_mode | S_IWGRP | S_IWOTH;
|
2014-07-26 10:51:21 -04:00
|
|
|
else if (argv[0][0] == 'n' && argv[0][1] == '\0')
|
2014-07-26 10:31:44 -04:00
|
|
|
mode = sb.st_mode & ~(S_IWGRP | S_IWOTH);
|
|
|
|
else
|
|
|
|
usage();
|
|
|
|
|
2014-08-04 16:02:28 -04:00
|
|
|
if (fchmod(STDERR_FILENO, mode) < 0)
|
|
|
|
eprintf("fchmod stderr:");
|
2014-07-26 10:31:44 -04:00
|
|
|
|
2014-10-02 18:45:25 -04:00
|
|
|
return 0;
|
2014-07-26 10:31:44 -04:00
|
|
|
}
|