diff --git a/tmux.c b/tmux.c index 08b26326..abe2c672 100644 --- a/tmux.c +++ b/tmux.c @@ -53,7 +53,7 @@ usage(void) fprintf(stderr, "usage: %s [-2Cluv] [-c shell-command] [-f file] [-L socket-name]\n" " [-S socket-path] [command [flags]]\n", - __progname); + getprogname()); exit(1); } @@ -95,7 +95,7 @@ areshell(const char *shell) ptr++; else ptr = shell; - progname = __progname; + progname = getprogname(); if (*progname == '-') progname++; if (strcmp(ptr, progname) == 0) diff --git a/tmux.h b/tmux.h index 2699626d..d61a459c 100644 --- a/tmux.h +++ b/tmux.h @@ -36,7 +36,6 @@ #include "xmalloc.h" -extern char *__progname; extern char **environ; struct client;