* strace.cc (opts): Add leading '+' to force posixly correct
behaviour. (main): Revert POSIXLY_CORRECT manipulations.
This commit is contained in:
parent
49a4f409df
commit
960471b1a6
@ -1,3 +1,9 @@
|
|||||||
|
2004-02-11 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* strace.cc (opts): Add leading '+' to force posixly correct
|
||||||
|
behaviour.
|
||||||
|
(main): Revert POSIXLY_CORRECT manipulations.
|
||||||
|
|
||||||
2004-02-10 Christopher Faylor <cgf@redhat.com>
|
2004-02-10 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
* strace.cc (main): Guard against previous setting of POSIXLY_CORRECT.
|
* strace.cc (main): Guard against previous setting of POSIXLY_CORRECT.
|
||||||
|
@ -870,7 +870,7 @@ struct option longopts[] = {
|
|||||||
{NULL, 0, NULL, 0}
|
{NULL, 0, NULL, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *const opts = "b:dhfm:no:p:S:tTuvw";
|
static const char *const opts = "+b:dhfm:no:p:S:tTuvw";
|
||||||
|
|
||||||
static void
|
static void
|
||||||
print_version ()
|
print_version ()
|
||||||
@ -903,15 +903,12 @@ main (int argc, char **argv)
|
|||||||
pid_t pid = 0;
|
pid_t pid = 0;
|
||||||
int opt;
|
int opt;
|
||||||
int toggle = 0;
|
int toggle = 0;
|
||||||
int posixly_correct_set = getenv ("POSIXLY_CORRECT") != NULL;
|
|
||||||
|
|
||||||
if (!(pgm = strrchr (*argv, '\\')) && !(pgm = strrchr (*argv, '/')))
|
if (!(pgm = strrchr (*argv, '\\')) && !(pgm = strrchr (*argv, '/')))
|
||||||
pgm = *argv;
|
pgm = *argv;
|
||||||
else
|
else
|
||||||
pgm++;
|
pgm++;
|
||||||
|
|
||||||
if (!posixly_correct_set)
|
|
||||||
(void) putenv("POSIXLY_CORRECT=1");
|
|
||||||
while ((opt = getopt_long (argc, argv, opts, longopts, NULL)) != EOF)
|
while ((opt = getopt_long (argc, argv, opts, longopts, NULL)) != EOF)
|
||||||
switch (opt)
|
switch (opt)
|
||||||
{
|
{
|
||||||
@ -996,8 +993,6 @@ character #%d.\n", optarg, (int) (endptr - optarg), endptr);
|
|||||||
if (!ofile)
|
if (!ofile)
|
||||||
ofile = stdout;
|
ofile = stdout;
|
||||||
|
|
||||||
if (!posixly_correct_set)
|
|
||||||
putenv ("POSIXLY_CORRECT=");
|
|
||||||
if (toggle)
|
if (toggle)
|
||||||
dotoggle (pid);
|
dotoggle (pid);
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user