Log errors from eval_password

All errors were discarded to /dev/null if the error_ptr was set to
NULL.
This commit is contained in:
William Wennerström
2020-07-06 11:00:09 +02:00
parent 0a23de061a
commit deb0818a1b

View File

@@ -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;
}