Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2006-02-01 00:23:57 +0300
committerChristopher Faylor <me@cgf.cx>2006-02-01 00:23:57 +0300
commitfd34affe5d4d0ee0a168ea6d721eb9d037305d92 (patch)
treef5018a46aa63056f804a454c8f8bac6dc38ed709 /winsup/cygwin
parent0ad7b0eb028c6505192eed19595cdaba38ab2886 (diff)
* spawn.cc (av::fixup): Remove unused argument.
(spawn_guts): Remove capitalization in debugging.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/spawn.cc8
2 files changed, 9 insertions, 4 deletions
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 <cgf@timesys.com>
+
+ * spawn.cc (av::fixup): Remove unused argument.
+ (spawn_guts): Remove capitalization in debugging.
+
2006-01-31 Corinna Vinschen <corinna@vinschen.de>
* 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")