summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/radius_shell.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/radius_shell.c b/src/radius_shell.c
index 81ecb65..5c03a37 100644
--- a/src/radius_shell.c
+++ b/src/radius_shell.c
@@ -112,11 +112,11 @@ execit:
/* should really check this against /etc/shell */
snprintf(execshell, sizeof execshell, "/bin/%s", check);
#else
- check = "bash";
+ check = "vbash";
if (*args[0] == '-')
- shell = "-bash";
+ shell = "-vbash";
else
- shell = "bash";
+ shell = "vbash";
snprintf(execshell, sizeof execshell, "/bin/%s", check);
#endif