URL: https://github.com/SSSD/sssd/pull/229
Author: pbrezina
 Title: #229: TRIVIAL: DP: Fix typo
Action: opened

PR body:
"""
I found this while reviewing Nikolais patches.
"""

To pull the PR as Git branch:
git remote add ghsssd https://github.com/SSSD/sssd
git fetch ghsssd pull/229/head:pr229
git checkout pr229
From 71c343285dcd162c9d65ad3b61b40cae698da85f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Pavel=20B=C5=99ezina?= <pbrez...@redhat.com>
Date: Thu, 6 Apr 2017 11:23:43 +0200
Subject: [PATCH] DP: Fix typo

---
 src/providers/data_provider/dp_target_id.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/providers/data_provider/dp_target_id.c b/src/providers/data_provider/dp_target_id.c
index 0bca9ba..2088f95 100644
--- a/src/providers/data_provider/dp_target_id.c
+++ b/src/providers/data_provider/dp_target_id.c
@@ -210,7 +210,7 @@ static errno_t dp_initgroups(struct sbus_request *sbus_req,
 
     ret = sysdb_initgroups(sbus_req, domain, data->filter_value, &res);
     if (ret == ENOENT || (ret == EOK && res->count == 0)) {
-        /* There is no point in concacting NSS responder. Proceed as usual. */
+        /* There is no point in contacting NSS responder. Proceed as usual. */
         return EAGAIN;
     } else if (ret != EOK) {
         DEBUG(SSSDBG_CRIT_FAILURE, "Unable to get initgroups [%d]: %s\n",
@@ -274,7 +274,7 @@ errno_t dp_get_account_info_handler(struct sbus_request *sbus_req,
     }
 
     if ((data->entry_type & BE_REQ_TYPE_MASK) == BE_REQ_INITGROUPS) {
-        ret =  dp_initgroups(sbus_req, dp_cli, key, dp_flags, data);
+        ret = dp_initgroups(sbus_req, dp_cli, key, dp_flags, data);
         if (ret != EAGAIN) {
             goto done;
         }
_______________________________________________
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org

Reply via email to