diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-03-06 08:46:03 -0500 |
---|---|---|
committer | Simo Sorce <ssorce@redhat.com> | 2009-03-06 12:36:53 -0500 |
commit | 88f6f6db02c76f4f9d17cbd665b951cdccaaa39e (patch) | |
tree | 2b2b7e654bb40a4bdce989c6dd76a54ec6a548a9 /server/monitor | |
parent | baa296befe5908dde17d6e907c0071c2f65a4a88 (diff) | |
download | sssd-88f6f6db02c76f4f9d17cbd665b951cdccaaa39e.tar.gz sssd-88f6f6db02c76f4f9d17cbd665b951cdccaaa39e.tar.bz2 sssd-88f6f6db02c76f4f9d17cbd665b951cdccaaa39e.zip |
Implement CreateUser in InfoPipe
Changed the order of the arguments to CreateUser in the
Introspection XML to match the other functions (domain belongs
second on the list)
A few other minor fixes as well:
Fixed a typo in SYSDB_GETCACHED_FILTER and sysdb_transaction_end().
Added missing error handling in infp_do_user_set_uid().
Diffstat (limited to 'server/monitor')
-rw-r--r-- | server/monitor/monitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/monitor/monitor.c b/server/monitor/monitor.c index fb5b9b91..3c393c97 100644 --- a/server/monitor/monitor.c +++ b/server/monitor/monitor.c @@ -650,7 +650,7 @@ static void identity_check(DBusPendingCall *pending, void *data) svc = svc->next; } if (!svc) { - DEBUG(0,("Unable to find peer in list of services, killing connection!\n")); + DEBUG(0,("Unable to find peer [%s] in list of services, killing connection!\n", svc_name)); sbus_disconnect(conn_ctx); goto done; } |