mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-18 08:56:22 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user