From 941de35bd0875c2cd74c9349eee6a64cfd673575 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Wed, 2 Apr 2008 20:20:37 +0100 Subject: [PATCH] sqush a typo in pk_conf_get_filename --- src/pk-conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pk-conf.c b/src/pk-conf.c index fd70a66f6..b517d824b 100644 --- a/src/pk-conf.c +++ b/src/pk-conf.c @@ -154,7 +154,7 @@ pk_conf_get_filename (void) #endif /* check the prefix path */ path = g_build_filename (SYSCONFDIR, "PackageKit", "PackageKit.conf", NULL); - if (!g_file_test (path, G_FILE_TEST_EXISTS)) { + if (g_file_test (path, G_FILE_TEST_EXISTS)) { goto out; }