From b9e66fb3e52d760d0e84a77838a4c009db9c1bc1 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Fri, 20 Sep 2013 10:08:42 +0200 Subject: Fix logout command setting --- ulock.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ulock.c b/ulock.c index 13529a5..7edfb05 100644 --- a/ulock.c +++ b/ulock.c @@ -326,7 +326,7 @@ static void load_config(void) { logoutTime = g_key_file_get_integer(keyFile, "ulock", "logout_timeout", NULL); - gchar *logoutCommandConfig = g_key_file_get_string(keyFile, "ulock", "logout_string", NULL); + gchar *logoutCommandConfig = g_key_file_get_string(keyFile, "ulock", "logout_command", NULL); if (logoutCommandConfig) logoutCommand = strdup(logoutCommandConfig); @@ -335,7 +335,6 @@ static void load_config(void) { int main(int argc, char *argv[]) { get_username(); - logoutCommand = strdup("echo foo"); setlocale(LC_ALL, ""); bindtextdomain("ulock", PREFIX "/share/locale"); -- cgit v1.2.3