Blame SOURCES/0002-config-bugfix-parse-commandline-options-into-correct.patch

ab7d06
From 8a22a98157f7f6773f3d1f295419569c6c880a47 Mon Sep 17 00:00:00 2001
ab7d06
From: =?UTF-8?q?Ulrich=20=C3=96lmann?= <u.oelmann@pengutronix.de>
ab7d06
Date: Thu, 27 Aug 2015 22:18:55 +0200
ab7d06
Subject: [PATCH] config: bugfix: parse commandline options into correct object
ab7d06
MIME-Version: 1.0
ab7d06
Content-Type: text/plain; charset=UTF-8
ab7d06
Content-Transfer-Encoding: 8bit
ab7d06
ab7d06
Config related commandline options should be parsed into a function argument but
ab7d06
were instead parsed into an object with local scope. As a result none of them
ab7d06
had any impact.
ab7d06
ab7d06
Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
ab7d06
ab7d06
Fixes: b4ad7434a87c165a77b615accbe1868a9df9221b
ab7d06
ab7d06
https://mail.gnome.org/archives/networkmanager-list/2015-August/msg00033.html
ab7d06
---
ab7d06
 src/main.c | 1 -
ab7d06
 1 file changed, 1 deletion(-)
ab7d06
ab7d06
diff --git a/src/main.c b/src/main.c
ab7d06
index 495262e..a9bc479 100644
ab7d06
--- a/src/main.c
ab7d06
+++ b/src/main.c
ab7d06
@@ -246,7 +246,6 @@ do_early_setup (int *argc, char **argv[], NMConfigCmdLineOptions *config_cli)
ab7d06
 		{NULL}
ab7d06
 	};
ab7d06
 
ab7d06
-	config_cli = nm_config_cmd_line_options_new ();
ab7d06
 	if (!nm_main_utils_early_setup ("NetworkManager",
ab7d06
 	                                argc,
ab7d06
 	                                argv,
ab7d06
-- 
ab7d06
2.4.3
ab7d06