From 6d8ce170b0be743f761244f467cdaa5f4318638d Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 7 Jun 2006 21:22:42 +0000 Subject: [PATCH] Fix from Tito to read from stdin only when it's not a tty. --- include/usage.h | 2 +- miscutils/hdparm.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/usage.h b/include/usage.h index 9bdfb3fe0..0349f6916 100644 --- a/include/usage.h +++ b/include/usage.h @@ -994,7 +994,7 @@ USE_FEATURE_DATE_ISOFMT( \ #define hdparm_trivial_usage \ "[options] [device] .." #define hdparm_full_usage \ - USE_FEATURE_HDPARM_GET_IDENTITY("\tIf no device name is specified read from stdin.\n") \ + USE_FEATURE_HDPARM_GET_IDENTITY("\tIf no device name is specified try to read from stdin.\n") \ "\nOptions:\n" \ "\t-a get/set fs readahead\n" \ "\t-A set drive read-lookahead flag (0/1)\n" \ diff --git a/miscutils/hdparm.c b/miscutils/hdparm.c index 5703eceb5..512995a4b 100644 --- a/miscutils/hdparm.c +++ b/miscutils/hdparm.c @@ -2185,11 +2185,11 @@ int hdparm_main(int argc, char **argv) argc -= optind; argv += optind; -#if ENABLE_FEATURE_HDPARM_GET_IDENTITY if (argc < 1) { - identify_from_stdin(); /* EXIT */ + if (ENABLE_FEATURE_HDPARM_GET_IDENTITY && !isatty(STDIN_FILENO)) + identify_from_stdin(); /* EXIT */ + else bb_show_usage(); } -#endif while (argc--) { process_dev(*argv);