1
0
mirror of https://passt.top/passt synced 2024-07-01 23:42:41 +00:00

conf: Don't print configuration on --quiet

Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
Stefano Brivio 2022-02-18 00:19:10 +01:00
parent 53489b8e6e
commit eb18f862cb

3
conf.c
View File

@ -1239,5 +1239,6 @@ void conf(struct ctx *c, int argc, char **argv)
}
}
conf_print(c);
if (!c->quiet)
conf_print(c);
}