diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2013-11-09 12:46:26 +0100 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-11-27 18:24:45 +0100 |
commit | 2e7fb99c9ff68ae89a79a5fc5d52039adb640410 (patch) | |
tree | f078712b45b0e082b9045a108ab67ed811f86086 /src/tools | |
parent | 78c4b29420855b9f5384cd5e052fc9369c57d899 (diff) | |
download | sssd-2e7fb99c9ff68ae89a79a5fc5d52039adb640410.tar.gz sssd-2e7fb99c9ff68ae89a79a5fc5d52039adb640410.tar.xz sssd-2e7fb99c9ff68ae89a79a5fc5d52039adb640410.zip |
Remove unused parameter from seed_domain_user_info
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/sss_seed.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tools/sss_seed.c b/src/tools/sss_seed.c index cb5a0bfc4..09af8b9b2 100644 --- a/src/tools/sss_seed.c +++ b/src/tools/sss_seed.c @@ -653,7 +653,6 @@ done: static int seed_domain_user_info(const char *name, const char *domain_name, - struct sysdb_ctx *sysdb, struct sss_domain_info *domain, bool *is_cached) { @@ -805,7 +804,7 @@ int main(int argc, const char **argv) /* get user info from domain */ ret = seed_domain_user_info(sctx->uctx->name, sctx->uctx->domain_name, - sctx->sysdb, sctx->domain, &sctx->user_cached); + sctx->domain, &sctx->user_cached); if (ret != EOK) { DEBUG(SSSDBG_OP_FAILURE, ("Failed lookup of user [%s] in domain [%s]\n", sctx->uctx->name, sctx->uctx->domain_name)); |