1
0
mirror of https://passt.top/passt synced 2024-06-27 13:32:41 +00:00

conf, passt: Rename stderr to force_stderr

While building against musl, gcc informs us that 'stderr' is a
protected keyword. This probably comes from a #define stderr (stderr)
in musl's stdio.h, to avoid a clash with extern FILE *const stderr,
but I didn't really track it down. Just rename it to force_stderr, it
makes more sense.

[sbrivio: Added commit message]
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
Chris Kuhn 2023-03-08 03:47:45 +01:00 committed by Stefano Brivio
parent fde8004ab0
commit 5c58feab7b
3 changed files with 6 additions and 6 deletions

6
conf.c
View File

@ -1357,13 +1357,13 @@ void conf(struct ctx *c, int argc, char **argv)
if (logfile)
die("Can't log to both file and stderr");
if (c->stderr)
if (c->force_stderr)
die("Multiple --stderr options given");
c->stderr = 1;
c->force_stderr = 1;
break;
case 'l':
if (c->stderr)
if (c->force_stderr)
die("Can't log to both stderr and file");
if (logfile)

View File

@ -241,7 +241,7 @@ int main(int argc, char **argv)
conf(&c, argc, argv);
trace_init(c.trace);
if (c.stderr || isatty(fileno(stdout)))
if (c.force_stderr || isatty(fileno(stdout)))
__openlog(log_name, LOG_PERROR, LOG_DAEMON);
quit_fd = pasta_netns_quit_init(&c);

View File

@ -158,7 +158,7 @@ struct ip6_ctx {
* @trace: Enable tracing (extra debug) mode
* @quiet: Don't print informational messages
* @foreground: Run in foreground, don't log to stderr by default
* @stderr: Force logging to stderr
* @force_stderr: Force logging to stderr
* @nofile: Maximum number of open files (ulimit -n)
* @sock_path: Path for UNIX domain socket
* @pcap: Path for packet capture file
@ -207,7 +207,7 @@ struct ctx {
int trace;
int quiet;
int foreground;
int stderr;
int force_stderr;
int nofile;
char sock_path[UNIX_PATH_MAX];
char pcap[PATH_MAX];