Skip to content
Snippets Groups Projects
Commit b3d85b44 authored by rswindell's avatar rswindell
Browse files

Added semicolon to the list of chars that trigger auto-shell mode.

parent d8f2d86f
Branches
Tags
No related merge requests found
......@@ -886,7 +886,7 @@ int sbbs_t::external(char* cmdline, long mode, char* startup_dir)
lprintf("Node %d executing external: %s",cfg.node_num,cmdline);
if(mode&EX_SH || strcspn(cmdline,"<>|")!=strlen(cmdline)) {
if(mode&EX_SH || strcspn(cmdline,"<>|;")!=strlen(cmdline)) {
argv[0]=comspec;
argv[1]="-c";
argv[2]=cmdline;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment