summaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-01-05 15:35:16 +0100
committerLennart Poettering <lennart@poettering.net>2012-01-05 15:39:07 +0100
commit67e5cc4f3ed41feaed399cfed77c6fbb41e14a8c (patch)
treeaf08fa65a0b0beece8350c0a94bb89e06dd61975 /src/util.c
parent224f2ee221e77c326d1d7761abb6e812432b2163 (diff)
util: never ellipsize welcome message
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c55
1 files changed, 30 insertions, 25 deletions
diff --git a/src/util.c b/src/util.c
index 72eb05954b..d3d521b928 100644
--- a/src/util.c
+++ b/src/util.c
@@ -3577,7 +3577,7 @@ cpu_set_t* cpu_set_malloc(unsigned *ncpus) {
}
}
-void status_vprintf(const char *status, const char *format, va_list ap) {
+void status_vprintf(const char *status, bool ellipse, const char *format, va_list ap) {
char *s = NULL, *spaces = NULL, *e;
int fd = -1, c;
size_t emax, sl, left;
@@ -3592,38 +3592,42 @@ void status_vprintf(const char *status, const char *format, va_list ap) {
if (vasprintf(&s, format, ap) < 0)
goto finish;
- fd = open_terminal("/dev/tty", O_WRONLY|O_NOCTTY|O_CLOEXEC);
+ fd = open_terminal("/dev/console", O_WRONLY|O_NOCTTY|O_CLOEXEC);
if (fd < 0)
goto finish;
- c = fd_columns(fd);
- if (c <= 0)
- c = 80;
+ if (ellipse) {
+ c = fd_columns(fd);
+ if (c <= 0)
+ c = 80;
- if (status) {
- sl = 2 + 6 + 1; /* " [" status "]" */
- emax = (size_t) c > sl ? c - sl - 1 : 0;
- } else
- emax = c - 1;
+ if (status) {
+ sl = 2 + 6 + 1; /* " [" status "]" */
+ emax = (size_t) c > sl ? c - sl - 1 : 0;
+ } else
+ emax = c - 1;
- e = ellipsize(s, emax, 75);
- if (e) {
- free(s);
- s = e;
+ e = ellipsize(s, emax, 75);
+ if (e) {
+ free(s);
+ s = e;
+ }
}
zero(iovec);
IOVEC_SET_STRING(iovec[n++], s);
- sl = strlen(s);
- left = emax > sl ? emax - sl : 0;
- if (left > 0) {
- spaces = malloc(left);
- if (spaces) {
- memset(spaces, ' ', left);
- iovec[n].iov_base = spaces;
- iovec[n].iov_len = left;
- n++;
+ if (ellipse) {
+ sl = strlen(s);
+ left = emax > sl ? emax - sl : 0;
+ if (left > 0) {
+ spaces = malloc(left);
+ if (spaces) {
+ memset(spaces, ' ', left);
+ iovec[n].iov_base = spaces;
+ iovec[n].iov_len = left;
+ n++;
+ }
}
}
@@ -3644,13 +3648,13 @@ finish:
close_nointr_nofail(fd);
}
-void status_printf(const char *status, const char *format, ...) {
+void status_printf(const char *status, bool ellipse, const char *format, ...) {
va_list ap;
assert(format);
va_start(ap, format);
- status_vprintf(status, format, ap);
+ status_vprintf(status, ellipse, format, ap);
va_end(ap);
}
@@ -3808,6 +3812,7 @@ void status_welcome(void) {
const_color = "1";
status_printf(NULL,
+ false,
"\nWelcome to \x1B[%sm%s\x1B[0m!\n",
const_color ? const_color : ansi_color,
const_pretty ? const_pretty : pretty_name);