mirror of
https://github.com/tmux/tmux.git
synced 2025-09-01 20:57:00 +00:00
When started as the shell, __progname contains a leading -, so hardcode "tmux"
for socket path and log files, and strip it when working out the shell.
This commit is contained in:
6
window.c
6
window.c
@ -62,6 +62,7 @@ const char *
|
||||
window_default_command(void)
|
||||
{
|
||||
const char *shell, *ptr;
|
||||
char *progname;
|
||||
struct passwd *pw;
|
||||
|
||||
shell = getenv("SHELL");
|
||||
@ -81,7 +82,10 @@ found:
|
||||
ptr++;
|
||||
else
|
||||
ptr = shell;
|
||||
if (strcmp(ptr, __progname) == 0)
|
||||
progname = __progname;
|
||||
if (*progname == '-')
|
||||
progname++;
|
||||
if (strcmp(ptr, progname) == 0)
|
||||
return (_PATH_BSHELL);
|
||||
return (shell);
|
||||
}
|
||||
|
Reference in New Issue
Block a user