about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/config/account.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config/account.c b/src/config/account.c
index 127831a8..54d7b18e 100644
--- a/src/config/account.c
+++ b/src/config/account.c
@@ -201,9 +201,10 @@ account_eval_password(ProfAccount *account)
     assert(account->eval_password != NULL);
 
     gchar **output = NULL;
+    gchar **error = NULL;
 
     gchar *argv[] = {"sh", "-c", account->eval_password, NULL};
-    if (!call_external(argv, &output, NULL)) {
+    if (!call_external(argv, &output, &error)) {
         return FALSE;
     }