diff options
-rw-r--r-- | ulock.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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"); |