[SSSD] [sssd PR#5838][comment] Tests: Fix warning about deprecated res_randomid()

2021-10-25 Thread justin-stephenson
  URL: https://github.com/SSSD/sssd/pull/5838
Title: #5838: Tests: Fix warning about deprecated res_randomid()

justin-stephenson commented:
"""
Changes made as requested.
"""

See the full comment at 
https://github.com/SSSD/sssd/pull/5838#issuecomment-951243195
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5838][synchronized] Tests: Fix warning about deprecated res_randomid()

2021-10-25 Thread justin-stephenson
   URL: https://github.com/SSSD/sssd/pull/5838
Author: justin-stephenson
 Title: #5838: Tests: Fix warning about deprecated res_randomid()
Action: synchronized

To pull the PR as Git branch:
git remote add ghsssd https://github.com/SSSD/sssd
git fetch ghsssd pull/5838/head:pr5838
git checkout pr5838
From 2157ab52a05253d82a5c8978cab55172f95fac1f Mon Sep 17 00:00:00 2001
From: Justin Stephenson 
Date: Mon, 25 Oct 2021 11:51:28 -0400
Subject: [PATCH] Tests: Fix warning about deprecated res_randomid()

---
 src/tests/cmocka/test_resolv_fake.c | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/tests/cmocka/test_resolv_fake.c b/src/tests/cmocka/test_resolv_fake.c
index 0f4011a39f..021d55abff 100644
--- a/src/tests/cmocka/test_resolv_fake.c
+++ b/src/tests/cmocka/test_resolv_fake.c
@@ -59,10 +59,10 @@ static ssize_t dns_header(unsigned char **buf, size_t ancount)
 memset(hb, 0, NS_HFIXEDSZ);
 memset(&h, 0, sizeof(h));
 
-h.id = res_randomid(); /* random query ID */
-h.qr = 1;  /* response flag */
-h.rd = 1;  /* recursion desired */
-h.ra = 1;  /* recursion available */
+h.id = 0x & sss_rand();  /* random query ID */
+h.qr = 1;/* response flag */
+h.rd = 1;/* recursion desired */
+h.ra = 1;/* recursion available */
 
 h.qdcount = htons(1);  /* no. of questions */
 h.ancount = htons(ancount);/* no. of answers */
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5838][opened] Tests: Fix warning about deprecated res_randomid()

2021-10-25 Thread justin-stephenson
   URL: https://github.com/SSSD/sssd/pull/5838
Author: justin-stephenson
 Title: #5838: Tests: Fix warning about deprecated res_randomid()
Action: opened

PR body:
"""
Warning on fedora rawhide

~~~
../src/tests/cmocka/test_resolv_fake.c: In function ‘dns_header’:
../src/tests/cmocka/test_resolv_fake.c:62:5: error: ‘__res_randomid’ is 
deprecated: use getentropy instead [-Werror=deprecated-declarations]
   62 | h.id = res_randomid(); /* random query ID */
  | ^
In file included from ../src/tests/cmocka/test_resolv_fake.c:33:
/usr/include/resolv.h:275:17: note: declared here
  275 | unsigned intres_randomid (void) __THROW
  | ^~~~
~~~
"""

To pull the PR as Git branch:
git remote add ghsssd https://github.com/SSSD/sssd
git fetch ghsssd pull/5838/head:pr5838
git checkout pr5838
From f5d9d0fb9278d409574b127e516744b8bb50cde0 Mon Sep 17 00:00:00 2001
From: Justin Stephenson 
Date: Mon, 25 Oct 2021 11:51:28 -0400
Subject: [PATCH] Tests: Fix warning about deprecated res_randomid()

---
 src/tests/cmocka/test_resolv_fake.c | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/tests/cmocka/test_resolv_fake.c b/src/tests/cmocka/test_resolv_fake.c
index 0f4011a39f..b11b5a203b 100644
--- a/src/tests/cmocka/test_resolv_fake.c
+++ b/src/tests/cmocka/test_resolv_fake.c
@@ -59,10 +59,11 @@ static ssize_t dns_header(unsigned char **buf, size_t ancount)
 memset(hb, 0, NS_HFIXEDSZ);
 memset(&h, 0, sizeof(h));
 
-h.id = res_randomid(); /* random query ID */
-h.qr = 1;  /* response flag */
-h.rd = 1;  /* recursion desired */
-h.ra = 1;  /* recursion available */
+srand(time(NULL));
+h.id = (uint16_t)rand(); /* random query ID */
+h.qr = 1;/* response flag */
+h.rd = 1;/* recursion desired */
+h.ra = 1;/* recursion available */
 
 h.qdcount = htons(1);  /* no. of questions */
 h.ancount = htons(ancount);/* no. of answers */
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5834][synchronized] Translations update from Weblate

2021-10-25 Thread weblate
   URL: https://github.com/SSSD/sssd/pull/5834
Author: weblate
 Title: #5834: Translations update from Weblate
Action: synchronized

To pull the PR as Git branch:
git remote add ghsssd https://github.com/SSSD/sssd
git fetch ghsssd pull/5834/head:pr5834
git checkout pr5834
From cbec3a84ed826df910d9a245c567df99b55a070e Mon Sep 17 00:00:00 2001
From: Weblate 
Date: Mon, 25 Oct 2021 20:05:20 +0200
Subject: [PATCH] po: update translations

(Finnish) currently translated at 6.1% (38 of 617 strings)
Translation: SSSD/sssd
Translate-URL: https://translate.fedoraproject.org/projects/sssd/sssd-master/fi/

po: update translations

(Korean) currently translated at 12.4% (326 of 2615 strings)
Translation: SSSD/sssd-manpage
Translate-URL: https://translate.fedoraproject.org/projects/sssd/sssd-manpage-master/ko/

po: update translations

(Ukrainian) currently translated at 100.0% (2621 of 2621 strings)
Translation: SSSD/sssd-manpage
Translate-URL: https://translate.fedoraproject.org/projects/sssd/sssd-manpage-master/uk/

po: update translations

(Ukrainian) currently translated at 100.0% (617 of 617 strings)
Translation: SSSD/sssd
Translate-URL: https://translate.fedoraproject.org/projects/sssd/sssd-master/uk/

po: update translations

(Polish) currently translated at 100.0% (617 of 617 strings)
Translation: SSSD/sssd
Translate-URL: https://translate.fedoraproject.org/projects/sssd/sssd-master/pl/

Update translation files

Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: SSSD/sssd
Translate-URL: https://translate.fedoraproject.org/projects/sssd/sssd-master/
---
 po/bg.po |  2 -
 po/ca.po | 16 
 po/cs.po | 16 
 po/de.po | 16 
 po/es.po | 16 
 po/eu.po |  2 -
 po/fi.po |  4 +-
 po/fr.po | 16 
 po/ja.po | 16 
 po/nl.po | 16 
 po/pl.po | 31 
 po/ru.po | 16 
 po/sv.po | 16 
 po/uk.po | 31 
 po/zh_CN.po  | 16 
 src/man/po/ko.po | 34 +
 src/man/po/uk.po | 96 +++-
 17 files changed, 63 insertions(+), 297 deletions(-)

diff --git a/po/bg.po b/po/bg.po
index a99683ff65..2c284a01ee 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -2810,11 +2810,9 @@ msgstr ""
 #~ msgid "The selected GID is outside the allowed range\n"
 #~ msgstr "Зададеният GID е извън позволения обхват\n"
 
-#, c-format
 #~ msgid "Group %1$s is outside the defined ID range for domain\n"
 #~ msgstr "Група %1$s е извън дефинирания ID обхват за домейн\n"
 
-#, c-format
 #~ msgid "User %1$s is outside the defined ID range for domain\n"
 #~ msgstr "Потребител %1$s е извън дефинирания ID обхват за домейн\n"
 
diff --git a/po/ca.po b/po/ca.po
index c37a0e1b97..cf8339a5b6 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -2898,7 +2898,6 @@ msgstr ""
 #~ msgid "Groups must be in the same domain as user\n"
 #~ msgstr "Els grups han d'estar al mateix domini que l'usuari\n"
 
-#, c-format
 #~ msgid "Cannot find group %1$s in local domain\n"
 #~ msgstr "No es pot trobar el grup %1$s al domini local\n"
 
@@ -2920,11 +2919,9 @@ msgstr ""
 #~ "El directori inicial de l'usuari ja existeix, no es copiaran les dades "
 #~ "del directori esquemàtic\n"
 
-#, c-format
 #~ msgid "Cannot create user's home directory: %1$s\n"
 #~ msgstr "No es pot crear el directori inicial de l'usuari: %1$s\n"
 
-#, c-format
 #~ msgid "Cannot create user's mail spool: %1$s\n"
 #~ msgstr "No es pot crear la gestió de cues del correu de l'usuari: %1$s\n"
 
@@ -2960,11 +2957,9 @@ msgstr ""
 #~ msgid "Specify group to delete\n"
 #~ msgstr "Especifiqueu el grup a eliminar\n"
 
-#, c-format
 #~ msgid "Group %1$s is outside the defined ID range for domain\n"
 #~ msgstr "El grup %1$s està fora de l'interval d'id. definit pel domini\n"
 
-#, c-format
 #~ msgid "NSS request failed (%1$d). Entry might remain in memory cache.\n"
 #~ msgstr ""
 #~ "Ha fallat la sol·licitud NSS (%1$d). L'entrada podria romandre en la "
@@ -3002,7 +2997,6 @@ msgstr ""
 #~ msgid "Member groups must be in the same domain as parent group\n"
 #~ msgstr "Els grups membres han d'estar al mateix domini com a grup primari\n"
 
-#, c-format
 #~ msgid ""
 #~ "Cannot find group %1$s in local domain, only groups in local domain are "
 #~ "allowed\n"
@@ -3027,19 +3021,15 @@ msgstr ""
 #~ msgid "Magic Private "
 #~ msgstr "Privat màgic "
 
-#, c-format
 #~ msgid "%1$s%2$sGroup: %3$s\n"
 #~ msgstr "%1$s%2$sGrup: %3$s\n"
 
-#, c-format
 #~ msgid "%1$sGID number: %2$d\n"
 #~ msgstr "%1$sNúmero GID: %2$d\n"
 
-#, c-format
 #~ msgid "%1$sMember users: "
 #~ msgstr "%1$sUsuaris membre: "
 
-#, c-format
 #~ msgid ""
 #~ "\n"
 #~ "%1$sIs a member of: "
@@ -3047,7 +3037,6 @@ msgstr ""
 #~ "\n"
 #~ "%1$sÉs un membre de: "
 
-#, c-format
 #~ msgid ""
 #~ "\n"
 #~ "%1$sMember groups: "
@@ -3086,14 +3075,12 @@ msgstr ""
 #~ msgid "Specify user to delete\n"
 #~ ms

[SSSD] [sssd PR#5814][closed] Tests: sss_override does not take precedence over override_homedir directive

2021-10-25 Thread pbrezina
   URL: https://github.com/SSSD/sssd/pull/5814
Author: aborah-sudo
 Title: #5814:  Tests: sss_override does not take precedence over 
override_homedir directive
Action: closed

To pull the PR as Git branch:
git remote add ghsssd https://github.com/SSSD/sssd
git fetch ghsssd pull/5814/head:pr5814
git checkout pr5814
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5814][-Ready to push] Tests: sss_override does not take precedence over override_homedir directive

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5814
Title: #5814:  Tests: sss_override does not take precedence over 
override_homedir directive

Label: -Ready to push
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5814][-Accepted] Tests: sss_override does not take precedence over override_homedir directive

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5814
Title: #5814:  Tests: sss_override does not take precedence over 
override_homedir directive

Label: -Accepted
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5814][comment] Tests: sss_override does not take precedence over override_homedir directive

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5814
Title: #5814:  Tests: sss_override does not take precedence over 
override_homedir directive

pbrezina commented:
"""
Pushed PR: https://github.com/SSSD/sssd/pull/5814

* `master`
* 48234ed8e4a06e78dcbaf57f09d540d484a79c0e - Tests: sss_override does not 
take precedence over override_homedir directive

"""

See the full comment at 
https://github.com/SSSD/sssd/pull/5814#issuecomment-951023926
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5814][+Pushed] Tests: sss_override does not take precedence over override_homedir directive

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5814
Title: #5814:  Tests: sss_override does not take precedence over 
override_homedir directive

Label: +Pushed
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5827][closed] A number of fixes around `strto*()` usage

2021-10-25 Thread pbrezina
   URL: https://github.com/SSSD/sssd/pull/5827
Author: alexey-tikhonov
 Title: #5827: A number of fixes around `strto*()` usage
Action: closed

To pull the PR as Git branch:
git remote add ghsssd https://github.com/SSSD/sssd
git fetch ghsssd pull/5827/head:pr5827
git checkout pr5827
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5827][-Accepted] A number of fixes around `strto*()` usage

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5827
Title: #5827: A number of fixes around `strto*()` usage

Label: -Accepted
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5827][-Ready to push] A number of fixes around `strto*()` usage

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5827
Title: #5827: A number of fixes around `strto*()` usage

Label: -Ready to push
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5827][+Pushed] A number of fixes around `strto*()` usage

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5827
Title: #5827: A number of fixes around `strto*()` usage

Label: +Pushed
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5827][comment] A number of fixes around `strto*()` usage

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5827
Title: #5827: A number of fixes around `strto*()` usage

pbrezina commented:
"""
Pushed PR: https://github.com/SSSD/sssd/pull/5827

* `master`
* a664e9ce08ca6c0f9eb2e260b25463eea9c7829b - TESTS: fixed a bug in 
define->string conversion
* 3c17a57e7cb30263b73e7b9456b896503be6bd45 - 'strto*()': usage sanitization
* a2cc7daef2a1378aa12a21cd37a6369946e27bfc - 'strtonum' helpers: usage 
sanitization
* de6eba31eaf19e7d8c87cc84aee140e29438336f - Removed excessive includes 
around 'strtonum'

"""

See the full comment at 
https://github.com/SSSD/sssd/pull/5827#issuecomment-950876989
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5828][closed] sbus: maintain correct refcount before sending a reply

2021-10-25 Thread pbrezina
   URL: https://github.com/SSSD/sssd/pull/5828
Author: pbrezina
 Title: #5828: sbus: maintain correct refcount before sending a reply
Action: closed

To pull the PR as Git branch:
git remote add ghsssd https://github.com/SSSD/sssd
git fetch ghsssd pull/5828/head:pr5828
git checkout pr5828
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5828][-Ready to push] sbus: maintain correct refcount before sending a reply

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5828
Title: #5828: sbus: maintain correct refcount before sending a reply

Label: -Ready to push
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5828][-Accepted] sbus: maintain correct refcount before sending a reply

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5828
Title: #5828: sbus: maintain correct refcount before sending a reply

Label: -Accepted
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5828][+Pushed] sbus: maintain correct refcount before sending a reply

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5828
Title: #5828: sbus: maintain correct refcount before sending a reply

Label: +Pushed
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5828][comment] sbus: maintain correct refcount before sending a reply

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5828
Title: #5828: sbus: maintain correct refcount before sending a reply

pbrezina commented:
"""
Pushed PR: https://github.com/SSSD/sssd/pull/5828

* `master`
* 8db2485cd28e0af74bd008251ba49b6d6e3a73a6 - sbus: maintain correct 
refcount before sending a reply

"""

See the full comment at 
https://github.com/SSSD/sssd/pull/5828#issuecomment-950876479
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5833][closed] cache_req: return success for autofs when ENOENT is returned from provider

2021-10-25 Thread pbrezina
   URL: https://github.com/SSSD/sssd/pull/5833
Author: pbrezina
 Title: #5833: cache_req: return success for autofs when ENOENT is returned 
from provider
Action: closed

To pull the PR as Git branch:
git remote add ghsssd https://github.com/SSSD/sssd
git fetch ghsssd pull/5833/head:pr5833
git checkout pr5833
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5833][-Ready to push] cache_req: return success for autofs when ENOENT is returned from provider

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5833
Title: #5833: cache_req: return success for autofs when ENOENT is returned from 
provider

Label: -Ready to push
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5833][-Accepted] cache_req: return success for autofs when ENOENT is returned from provider

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5833
Title: #5833: cache_req: return success for autofs when ENOENT is returned from 
provider

Label: -Accepted
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5833][+Pushed] cache_req: return success for autofs when ENOENT is returned from provider

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5833
Title: #5833: cache_req: return success for autofs when ENOENT is returned from 
provider

Label: +Pushed
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5833][comment] cache_req: return success for autofs when ENOENT is returned from provider

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5833
Title: #5833: cache_req: return success for autofs when ENOENT is returned from 
provider

pbrezina commented:
"""
Pushed PR: https://github.com/SSSD/sssd/pull/5833

* `master`
* bb94a18f0f0cba1e9fb5abf78b995d69e5f3c559 - cache_req: return success for 
autofs when ENOENT is returned from provider

"""

See the full comment at 
https://github.com/SSSD/sssd/pull/5833#issuecomment-950876172
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5833][+Ready to push] cache_req: return success for autofs when ENOENT is returned from provider

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5833
Title: #5833: cache_req: return success for autofs when ENOENT is returned from 
provider

Label: +Ready to push
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5828][+Ready to push] sbus: maintain correct refcount before sending a reply

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5828
Title: #5828: sbus: maintain correct refcount before sending a reply

Label: +Ready to push
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5827][+Ready to push] A number of fixes around `strto*()` usage

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5827
Title: #5827: A number of fixes around `strto*()` usage

Label: +Ready to push
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5814][+Ready to push] Tests: sss_override does not take precedence over override_homedir directive

2021-10-25 Thread pbrezina
  URL: https://github.com/SSSD/sssd/pull/5814
Title: #5814:  Tests: sss_override does not take precedence over 
override_homedir directive

Label: +Ready to push
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5784][comment] proxy: allow removing group members

2021-10-25 Thread alexey-tikhonov
  URL: https://github.com/SSSD/sssd/pull/5784
Title: #5784: proxy: allow removing group members

alexey-tikhonov commented:
"""
Thank you for changes. ACK from me.

Since I somewhat influenced final solution, would be good to if somebody else 
took a look.


"""

See the full comment at 
https://github.com/SSSD/sssd/pull/5784#issuecomment-950870013
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5828][+Accepted] sbus: maintain correct refcount before sending a reply

2021-10-25 Thread elkoniu
  URL: https://github.com/SSSD/sssd/pull/5828
Title: #5828: sbus: maintain correct refcount before sending a reply

Label: +Accepted
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5827][-Waiting for review] A number of fixes around `strto*()` usage

2021-10-25 Thread elkoniu
  URL: https://github.com/SSSD/sssd/pull/5827
Title: #5827: A number of fixes around `strto*()` usage

Label: -Waiting for review
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[SSSD] [sssd PR#5827][+Accepted] A number of fixes around `strto*()` usage

2021-10-25 Thread elkoniu
  URL: https://github.com/SSSD/sssd/pull/5827
Title: #5827: A number of fixes around `strto*()` usage

Label: +Accepted
___
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure