diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 2d00e1eb6..33607f4b3 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2006-01-31 Christopher Faylor + + * spawn.cc (av::fixup): Remove unused argument. + (spawn_guts): Remove capitalization in debugging. + 2006-01-31 Corinna Vinschen * spawn.cc (find_exec): Only return files with execute permission set diff --git a/winsup/cygwin/spawn.cc b/winsup/cygwin/spawn.cc index 7bc1b6942..f906dce68 100644 --- a/winsup/cygwin/spawn.cc +++ b/winsup/cygwin/spawn.cc @@ -340,7 +340,7 @@ class av for (int i = calloced; i < argc; i++) argv[i] = cstrdup1 (argv[i]); } - int fixup (child_info_types, const char *, path_conv&, const char *); + int fixup (const char *, path_conv&, const char *); }; int @@ -477,7 +477,7 @@ spawn_guts (const char * prog_arg, const char *const *argv, } bool wascygexec = real_path.iscygexec (); - res = newargv.fixup (chtype, prog_arg, real_path, ext); + res = newargv.fixup (prog_arg, real_path, ext); if (res) goto out; @@ -555,7 +555,7 @@ spawn_guts (const char * prog_arg, const char *const *argv, if (one_line.ix >= MAXWINCMDLEN) { - debug_printf ("Command line too long (>32K), return E2BIG"); + debug_printf ("command line too long (>32K), return E2BIG"); set_errno (E2BIG); res = -1; goto out; @@ -1049,7 +1049,7 @@ spawnvpe (int mode, const char *file, const char * const *argv, } int -av::fixup (child_info_types chtype, const char *prog_arg, path_conv& real_path, const char *ext) +av::fixup (const char *prog_arg, path_conv& real_path, const char *ext) { bool exeext = strcasematch (ext, ".exe"); if (exeext && real_path.iscygexec () || strcasematch (ext, ".bat")