diff options
Diffstat (limited to 'dbus/dbus-auth-script.c')
-rw-r--r-- | dbus/dbus-auth-script.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dbus/dbus-auth-script.c b/dbus/dbus-auth-script.c index 732b4515..336d63e1 100644 --- a/dbus/dbus-auth-script.c +++ b/dbus/dbus-auth-script.c @@ -184,7 +184,7 @@ dbus_bool_t _dbus_auth_script_run (const DBusString *filename) { DBusString file; - DBusResultCode result; + DBusError error; DBusString line; dbus_bool_t retval; int line_no; @@ -213,14 +213,14 @@ _dbus_auth_script_run (const DBusString *filename) _dbus_string_free (&line); return FALSE; } - - if ((result = _dbus_file_get_contents (&file, filename)) != DBUS_RESULT_SUCCESS) - { + + dbus_error_init (&error); + if (!_dbus_file_get_contents (&file, filename, &error)) { const char *s; _dbus_string_get_const_data (filename, &s); _dbus_warn ("Getting contents of %s failed: %s\n", - s, dbus_result_to_string (result)); - + s, error.message); + dbus_error_free (&error); goto out; } |