[Spice-devel] [PATCH fixup1 x11spice 3/3] Bug fix: a listen specification from the config file was ignored
Jeremy White
jwhite at codeweavers.com
Wed Jul 24 14:17:26 UTC 2019
Signed-off-by: Jeremy White <jwhite at codeweavers.com>
---
src/options.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/options.c b/src/options.c
index 6620b853..64e6ac95 100644
--- a/src/options.c
+++ b/src/options.c
@@ -327,7 +327,9 @@ int options_parse_arguments(int argc, char *argv[], options_t *options)
if (rc == 0) {
if (optind >= argc) {
/* Default */
- str_replace(&options->listen, "5900");
+ if (options->listen == NULL) {
+ str_replace(&options->listen, "5900");
+ }
} else if (optind < (argc - 1)) {
fprintf(stderr, "Error: too many arguments\n");
rc = X11SPICE_ERR_BADARGS;
--
2.20.1
More information about the Spice-devel
mailing list