source: MondoRescue/branches/2.2.9/mindi-busybox/coreutils/tty.c@ 2859

Last change on this file since 2859 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 1.2 KB
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * tty implementation for busybox
4 *
5 * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
6 *
[2725]7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]8 */
9
[2725]10/* BB_AUDIT SUSv4 compliant */
11/* http://www.opengroup.org/onlinepubs/9699919799/utilities/tty.html */
[821]12
[1765]13#include "libbb.h"
[821]14
[2725]15int tty_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
16int tty_main(int argc UNUSED_PARAM, char **argv)
[821]17{
18 const char *s;
[2725]19 IF_INCLUDE_SUSv2(int silent;) /* Note: No longer relevant in SUSv3. */
[821]20 int retval;
21
[2725]22 xfunc_error_retval = 2; /* SUSv3 requires > 1 for error. */
[821]23
[2725]24 IF_INCLUDE_SUSv2(silent = getopt32(argv, "s");)
25 IF_INCLUDE_SUSv2(argv += optind;)
26 IF_NOT_INCLUDE_SUSv2(argv += 1;)
[821]27
28 /* gnu tty outputs a warning that it is ignoring all args. */
[2725]29 bb_warn_ignoring_args(argv[0]);
[821]30
[2725]31 retval = EXIT_SUCCESS;
[821]32
[2725]33 s = xmalloc_ttyname(STDIN_FILENO);
[1765]34 if (s == NULL) {
[2725]35 /* According to SUSv3, ttyname can fail with EBADF or ENOTTY.
[821]36 * We know the file descriptor is good, so failure means not a tty. */
37 s = "not a tty";
[2725]38 retval = EXIT_FAILURE;
[821]39 }
[2725]40 IF_INCLUDE_SUSv2(if (!silent) puts(s);)
41 IF_NOT_INCLUDE_SUSv2(puts(s);)
[821]42
[1765]43 fflush_stdout_and_exit(retval);
[821]44}
Note: See TracBrowser for help on using the repository browser.