]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
fix warning in compat.cpp
authornorbert.bizet <norbert.bizet@baculasystems.com>
Thu, 6 Apr 2023 16:40:16 +0000 (12:40 -0400)
committerEric Bollengier <eric@baculasystems.com>
Thu, 14 Sep 2023 11:57:01 +0000 (13:57 +0200)
bacula/src/win32/compat/compat.cpp

index 2b16ca2328fd599e791e4476edd7cf4f882e757f..bc45fe1032bcbadf390418a512818f9dc615db6e 100644 (file)
@@ -2678,7 +2678,7 @@ CreateChildProcess(const char *cmdline, HANDLE in, HANDLE out, HANDLE err,
    POOL_MEM cmdLine(PM_FNAME);
    if (cmd_string_opt) {
       /* For working around multiple double quotes in the exe and arguments, we use the /s cmd option */
-      /* /s skips the parsing rules of /c and only strips the first and last quote so:
+      /* /s skips the parsing rules of /c and only strips the first and last quote so: */
       /*  cmd.exe /s /c ""C:\program files\myexe.exe" -file "C:\program files\args.txt"" will respect both */
       /* "C:\program files\myexe.exe" and "C:\program files\args.txt" quotes */
       Mmsg(cmdLine, "%s /s /c \"\"%s\"%s\"", comspec, exeFile, argStart);