diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2011-04-24 21:32:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2011-04-24 21:32:08 +0000 |
commit | 4f40f538b04f7436846eac16078ad300416dc615 (patch) | |
tree | 7ba925ec1b1d3ad0bc5d0c25513fa0ba3c2c58ef /usr.bin/tmux/status.c | |
parent | 845c90f59b8a1ee8f0c8d4cc236c44ad6b79157b (diff) |
Provide #h for short hostname (no domain) from Michal Mazurek.
Diffstat (limited to 'usr.bin/tmux/status.c')
-rw-r--r-- | usr.bin/tmux/status.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/usr.bin/tmux/status.c b/usr.bin/tmux/status.c index 92cd897e8c7..81675b897d9 100644 --- a/usr.bin/tmux/status.c +++ b/usr.bin/tmux/status.c @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.73 2011/04/18 19:49:05 nicm Exp $ */ +/* $OpenBSD: status.c,v 1.74 2011/04/24 21:32:07 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -410,6 +410,13 @@ status_replace1(struct client *c, struct session *s, struct winlink *wl, fatal("gethostname failed"); ptr = tmp; goto do_replace; + case 'h': + if (gethostname(tmp, sizeof tmp) != 0) + fatal("gethostname failed"); + if ((ptr = strchr(tmp, '.')) != NULL) + *ptr = '\0'; + ptr = tmp; + goto do_replace; case 'I': xsnprintf(tmp, sizeof tmp, "%d", wl->idx); ptr = tmp; |