From d165559ef276e36fc645026b8bd1dedd8b7e3802 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Thu, 15 Jan 2015 15:46:19 +0100 Subject: [PATCH] config/trivial: fix returning FALSE instead of NULL in nm_config_new() (cherry picked from commit 9387e8e8a7a76732ae0eed7732d1f284cf82148a) --- src/nm-config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nm-config.c b/src/nm-config.c index 4626ae2642..8e0be25c2d 100644 --- a/src/nm-config.c +++ b/src/nm-config.c @@ -580,7 +580,7 @@ nm_config_new (GError **error) } g_ptr_array_unref (confs); if (!singleton) - return FALSE; + return NULL; /* Handle no-auto-default key and state file */ priv->no_auto_default = g_key_file_get_string_list (priv->keyfile, "main", "no-auto-default", NULL, NULL);