summaryrefslogtreecommitdiff
path: root/src/login/loginctl.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-10-18 23:59:41 +0200
committerLennart Poettering <lennart@poettering.net>2012-10-19 00:07:55 +0200
commit8481248b9fbddc6d5e6ff26eb23505ef13dc85f7 (patch)
treee4fe79bad17efaf2c8e6382180be720776e9d73c /src/login/loginctl.c
parent28917d7dc711746795f7e6468c06c1983a5cdf53 (diff)
util: unify usage of on_tty() in util.c
Diffstat (limited to 'src/login/loginctl.c')
-rw-r--r--src/login/loginctl.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/login/loginctl.c b/src/login/loginctl.c
index 97c6617d7..24941fef3 100644
--- a/src/login/loginctl.c
+++ b/src/login/loginctl.c
@@ -50,26 +50,9 @@ static enum transport {
static bool arg_ask_password = true;
static const char *arg_host = NULL;
-static bool on_tty(void) {
- static int t = -1;
-
- /* Note that this is invoked relatively early, before we start
- * the pager. That means the value we return reflects whether
- * we originally were started on a tty, not if we currently
- * are. But this is intended, since we want colour and so on
- * when run in our own pager. */
-
- if (_unlikely_(t < 0))
- t = isatty(STDOUT_FILENO) > 0;
-
- return t;
-}
-
static void pager_open_if_enabled(void) {
/* Cache result before we open the pager */
- on_tty();
-
if (arg_no_pager)
return;