From 6605d32bd560c1ec71b5d6bc543ddb796d444f76 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Mon, 21 Mar 2011 14:25:10 -0400 Subject: don't parse RootDir directive --- expac.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/expac.c b/expac.c index d2558a1..cdeead8 100644 --- a/expac.c +++ b/expac.c @@ -152,9 +152,7 @@ static int alpm_init() { strsep(&ptr, "="); strtrim(key); strtrim(ptr); - if (strcmp(key, "RootDir") == 0) { - alpm_option_set_root(ptr); - } else if (strcmp(key, "DBPath") == 0) { + if (strcmp(key, "DBPath") == 0) { alpm_option_set_dbpath(ptr); } } -- cgit v1.2.3-54-g00ecf