summaryrefslogtreecommitdiff
path: root/src/up-history.c
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2010-02-05 05:11:57 +0100
committerRichard Hughes <richard@hughsie.com>2010-02-05 08:35:20 +0000
commit0ff7b4fdff04cd24dfe600f5748890df7da8d725 (patch)
tree173fefdca626dd18a86d0b33c541bc22f2ab25bb /src/up-history.c
parent9852851db148df56db8dcae2dda5d93880fe3fe2 (diff)
downloadupower-0ff7b4fdff04cd24dfe600f5748890df7da8d725.tar.gz
Move the history files to /var/lib/upower
Distros should move existing files from /var/lib/DeviceKit-power to /var/lib/upower on upgrades in their maintainer scripts.
Diffstat (limited to 'src/up-history.c')
-rw-r--r--src/up-history.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/up-history.c b/src/up-history.c
index a6f981d..19c263b 100644
--- a/src/up-history.c
+++ b/src/up-history.c
@@ -382,7 +382,7 @@ up_history_get_filename (UpHistory *history, const gchar *type)
gchar *filename;
filename = g_strdup_printf ("history-%s-%s.dat", type, history->priv->id);
- path = g_build_filename (PACKAGE_LOCALSTATE_DIR, "lib", "DeviceKit-power", filename, NULL);
+ path = g_build_filename (PACKAGE_LOCALSTATE_DIR, "lib", "upower", filename, NULL);
g_free (filename);
return path;
}