util/weakbox

try both $SHELL and default-shell before exit (a8cdf2ebcb5b38cfe4ce6c92361cea403ba3044a)
Repositories | LICENSE

commit a8cdf2ebcb5b38cfe4ce6c92361cea403ba3044a
parent a242984c8c873bff8045418aff8ea1d5c3d76a09
Author: Friedel Schön <[email protected]>
Date:   Mon, 22 Apr 2024 11:01:54 +0200

try both $SHELL and default-shell before exit

Diffstat:
Mweakbox.c5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/weakbox.c b/weakbox.c @@ -228,11 +228,8 @@ int main(int argc, char** argv) { } else if (shell) { DEBUG("debug: executing '%s'...\n", shell); execlp(shell, shell, NULL); - fprintf(stderr, "error: unable to execute '%s': %s\n", shell, strerror(errno)); - } else { - DEBUG("debug: executing '" SHELL_DEFAULT "'...\n"); execlp(SHELL_DEFAULT, SHELL_DEFAULT, NULL); - fprintf(stderr, "error: unable to execute '" SHELL_DEFAULT "': %s\n", strerror(errno)); + fprintf(stderr, "error: unable to execute '%s' or '" SHELL_DEFAULT "': %s\n", shell, strerror(errno)); } return 1; }