aboutsummaryrefslogtreecommitdiff
path: root/init/mesg.c
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-09-16 04:21:46 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-09-16 04:21:46 +0000
commit5f7106d3b265fd42b8cd6d4652d3e513e0cb2bca (patch)
tree3942c0a93b5e11fbb838777dba8d3002b17c2583 /init/mesg.c
parent83f7086d8973dc5127a458c1bffab542721939c6 (diff)
downloadbusybox-w32-5f7106d3b265fd42b8cd6d4652d3e513e0cb2bca.tar.gz
busybox-w32-5f7106d3b265fd42b8cd6d4652d3e513e0cb2bca.tar.bz2
busybox-w32-5f7106d3b265fd42b8cd6d4652d3e513e0cb2bca.zip
mesg applet by Manuel Novoa III
git-svn-id: svn://busybox.net/trunk/busybox@5491 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'init/mesg.c')
-rw-r--r--init/mesg.c58
1 files changed, 58 insertions, 0 deletions
diff --git a/init/mesg.c b/init/mesg.c
new file mode 100644
index 000000000..f9b46e029
--- /dev/null
+++ b/init/mesg.c
@@ -0,0 +1,58 @@
1/*
2 * mesg implementation for busybox
3 *
4 * Copyright (c) 2002 Manuel Novoa III <mjn3@codepoet.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21#include <unistd.h>
22#include <stdlib.h>
23#include "libbb.h"
24
25#ifdef USE_TTY_GROUP
26#define S_IWGRP_OR_S_IWOTH S_IWGRP
27#else
28#define S_IWGRP_OR_S_IWOTH (S_IWGRP | S_IWOTH)
29#endif
30
31extern int mesg_main(int argc, char *argv[])
32{
33 struct stat sb;
34 char *tty;
35 char c;
36
37 if ((--argc == 0)
38 || ((argc == 1) && (((c = **++argv) == 'y') || (c == 'n')))) {
39 if ((tty = ttyname(STDERR_FILENO)) == NULL) {
40 tty = "ttyname";
41 } else if (stat(tty, &sb) == 0) {
42 if (argc == 0) {
43 puts(((sb.st_mode & (S_IWGRP | S_IWOTH)) ==
44 0) ? "is n" : "is y");
45 return EXIT_SUCCESS;
46 }
47 if (chmod
48 (tty,
49 (c ==
50 'y') ? sb.st_mode | (S_IWGRP_OR_S_IWOTH) : sb.
51 st_mode & ~(S_IWGRP | S_IWOTH)) == 0) {
52 return EXIT_SUCCESS;
53 }
54 }
55 perror_msg_and_die("%s", tty);
56 }
57 show_usage();
58}