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> |
3bd01976012ac3959f76da3272ce03964b359356 |
|
17-Oct-2013 |
Michal Zidek <mzidek@redhat.com> |
sdap_async_sudo_hostinfo.c: Use check_ipvX_addr |
6982b488e03b8e29e186f0c54cf5f80438cceadd |
|
24-Sep-2013 |
Jakub Hrozek <jhrozek@redhat.com> |
Convert IN_MULTICAST parameter to host order
https://fedorahosted.org/sssd/ticket/2087
IN_MULTICAST accepts address in the host order, but network order was
supplied. |
44fc7e53b403d45576ab61d2dea4608e323ed332 |
|
03-Apr-2013 |
Jakub Hrozek <jhrozek@redhat.com> |
Centralize resolv_init, remove resolv context list |
584eda085e83a428f2c39dadf0d7adeaff5c87f4 |
|
03-Apr-2013 |
Jakub Hrozek <jhrozek@redhat.com> |
Init failover with be_res options |
04759b59e71c78ab23b84d13dd29d9c6dd680adb |
|
02-Jan-2013 |
Michal Zidek <mzidek@redhat.com> |
failover: Protect against empty host names
Added new parameter to split_on_separator that allows to skip
empty values.
The whole function was rewritten. Unit test case was added to
check the new implementation.
https://fedorahosted.org/sssd/ticket/1484 |
fbaaa993eff7ef1ed5a62c38d6cdacd52a53d2d8 |
|
30-Jul-2012 |
Pavel Březina <pbrezina@redhat.com> |
sudo ldap provider: support autoconfiguration of hostnames
https://fedorahosted.org/sssd/ticket/1420
sudoHost attribute may contain hostname or fqdn of the machine.
Sudo itself supports only one hostname and its fqdn - the one that
is returned by gethostbyname().
This patch implements autoconfiguration of hostname and fqdn if
it has not been set manually by ldap_sudo_hostnames option. |
d6133b04d4ee47f147db26cd732ea5d209af5b8e |
|
09-Jul-2012 |
Stephen Gallagher <sgallagh@redhat.com> |
Fix potential NULL-dereference
Coverity #12797 |
34c222586c1ee4790ce3ff86a2ffb27c666c0662 |
|
06-Jul-2012 |
Stef Walter <stefw@gnome.org> |
Fix crash when interface doesn't have an address
* This is similar to the code in ipa_dyndns_update_send() |
468f1c8d4763a65f24ab8d7523a5291ef6320db7 |
|
29-Jun-2012 |
Pavel Březina <pbrezina@redhat.com> |
sudo ldap provider: support autoconfiguration of IP addresses
sudoHost attribute may contain IPv4 or IPv6 host/network address.
This patch adds support for autoconfiguration of these information. |
5f73b623fc72e3b9b3590420825f30e618b4d4dd |
|
29-Jun-2012 |
Pavel Březina <pbrezina@redhat.com> |
sudo ldap provider: load host filter configuration on init
We need to load host information during provider initialization.
Currently it loads only values from configuration files, but it is
implemented as an asynchrounous request as it will later try to
autodetect these settings (which will need to contact DNS). |