4a9c1047354dbe5a4ed41e5951ae623e3772e113 |
|
29-Jan-2018 |
René Genz <liebundartig@freenet.de> |
Fix minor spelling mistakes in providers/*
Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com> |
8c9ecf0bd04be87a61d5f0e490ab8a7c48f481dd |
|
02-Oct-2015 |
Pavel Reichl <preichl@redhat.com> |
PROXY: fix minor memory leak
Reviewed-by: Pavel Březina <pbrezina@redhat.com> |
38429c99bf5af14c2d6bae6ddcf70974fdd103cc |
|
13-Nov-2014 |
Michal Zidek <mzidek@redhat.com> |
PROXY: Preserve service name in proxy provider
Fixes:
https://fedorahosted.org/sssd/ticket/2461
Reviewed-by: Pavel Reichl <preichl@redhat.com>
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com> |
a3c8390d19593b1e5277d95bfb4ab206d4785150 |
|
12-Feb-2014 |
Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com> |
Make DEBUG macro invocations variadic
Use a script to update DEBUG macro invocations to use it as a variadic
macro, supplying format string and its arguments directly, instead of
wrapping them in parens.
This script was used to update the code:
grep -rwl --include '*.[hc]' DEBUG . |
while read f; do
mv "$f"{,.orig}
perl -e \
'use strict;
use File::Slurp;
my $text=read_file(\*STDIN);
$text=~s#(\bDEBUG\s*\([^(]+)\((.*?)\)\s*\)\s*;#$1$2);#gs;
print $text;' < "$f.orig" > "$f"
rm "$f.orig"
done
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
Reviewed-by: Stephen Gallagher <sgallagh@redhat.com>
Reviewed-by: Simo Sorce <simo@redhat.com> |
4fcc50e133f90cd4c5931a3ac48c84cb628b16fc |
|
15-Nov-2013 |
Michal Zidek <mzidek@redhat.com> |
SYSDB: Drop the sysdb_ctx parameter from the sysdb_services module |
980a535ac81b0f63ce18fc2311dab702ced7fdc6 |
|
21-Oct-2013 |
Jakub Hrozek <jhrozek@redhat.com> |
PROXY: Fix memory hierarchy when enumerating services |
681742138b2afbbefa7f14de937beb438409208e |
|
15-Jan-2013 |
Simo Sorce <simo@redhat.com> |
Add domain arguments to sysdb services functions
also fix sysdb_svc_add declarations |
2ca23577d3a25aead24ba759a1f6f67ffc24decf |
|
15-Jan-2013 |
Simo Sorce <simo@redhat.com> |
Add domain argument to sysdb_remove_attrs() |
21d485184df986e1a123f70c689517386e51a5ce |
|
23-Aug-2012 |
Michal Zidek <mzidek@redhat.com> |
Unify usage of sysdb transactions
Removing bad examples of usage of sysdb_transaction_start/commit/end
functions and making it more consistent (all files except of
src/db/sysdb_*.c). |
499718cb04a534ba76ee9dfb055c2bfc96fdeeb3 |
|
09-Aug-2012 |
Ondrej Kos <okos@redhat.com> |
Backward GOTOs rewritten into do-while loops. |
215280b9af59ab28abc501c242e4802984c9281a |
|
29-Mar-2012 |
Jakub Hrozek <jhrozek@redhat.com> |
Proxy services: Save lowercased protocol names and aliases in case-insensitive domains |
bd92e8ee315d4da9350b9ef0358c88a7b54aeebe |
|
04-Feb-2012 |
Stephen Gallagher <sgallagh@redhat.com> |
NSS: Add individual timeouts for entry types
https://fedorahosted.org/sssd/ticket/1016 |
e299638926171e0e92a36122aeff6611cd52418d |
|
31-Jan-2012 |
Stephen Gallagher <sgallagh@redhat.com> |
SYSDB: extend sysdb_store_service() to accept additional attributes |
627d83dff183219826489949cb55ef71945e94ab |
|
27-Jan-2012 |
Stephen Gallagher <sgallagh@redhat.com> |
PROXY: add support for enumerating services |
aec5785126354bd8b192f63fe04ea08dae9c0705 |
|
27-Jan-2012 |
Stephen Gallagher <sgallagh@redhat.com> |
PROXY: add support for service lookups (non-enumeration) |