cac22be9e58abdcf6c3bf66190fba0f7cb6f490e |
|
02-Mar-2015 |
Lukas Slebodnik <lslebodn@redhat.com> |
Remove useless assignment to function parameter
Reported by: cppcheck
void free_fun(struct info *info)
free(info->name);
free(info);
info = NULL;
^^^^^^^^^^^
Assignment to function parameter has no effect outside the function.
Reviewed-by: Pavel Reichl <preichl@redhat.com> |
fb0332565892bc10998ca98b567d4dde2213844d |
|
12-Feb-2014 |
Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com> |
Move DEBUG macro body to debug_fn
Move DEBUG macro body to the debug_fn function, adding "function"
argument to the latter.
Rename "debug_fn" in sssd_krb5_locator_plugin.c to "plugin_debug_fn" to
remove conflict with the sssd debug_fn.
Replace DEBUG_MSG macro usage with debug_fn function usage.
Remove DEBUG_MSG macro along with tests.
The above makes the total size of binaries drop by 20% for the standard
Fedora build and by 44% for a build configured according to Debian
packaging script.
Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
Reviewed-by: Stephen Gallagher <sgallagh@redhat.com>
Reviewed-by: Simo Sorce <simo@redhat.com> |
57cd3443dcb7c073c5a00a9f2c3c3a3030ae2d3e |
|
11-Sep-2013 |
Lukas Slebodnik <lslebodn@redhat.com> |
Fix formating of variables with type: long |
71062d4494bbe9c24358e21fa3a40ae747eae0f6 |
|
06-Jul-2012 |
Stephen Gallagher <sgallagh@redhat.com> |
KRB5_LOCATOR: Print the filename that couldn't be opened |
06ca37517d873ff240422c4c004d97e1d067af14 |
|
07-May-2012 |
Jakub Hrozek <jhrozek@redhat.com> |
krb5 locator: Do not leak addrinfo |
7efbb82f43d5b7c17c4f7a4bfc363e6bf0291281 |
|
07-May-2012 |
Jakub Hrozek <jhrozek@redhat.com> |
Kerberos locator: Include the correct krb5.h header file
https://fedorahosted.org/sssd/ticket/1325 |
9d7d4458d94d0aac0a7edf999368eb18f89cb76a |
|
20-Apr-2012 |
Jakub Hrozek <jhrozek@redhat.com> |
Convert read and write operations to sss_atomic_read
https://fedorahosted.org/sssd/ticket/1209 |
4a6a5421113ab662a665c62ed6a24b61a5a36950 |
|
28-Sep-2011 |
Jakub Hrozek <jhrozek@redhat.com> |
Multiline macro cleanup
This is mostly a cosmetic patch.
The purpose of wrapping a multi-line macro in a do { } while(0) is to
make the macro usable as a regular statement, not a compound statement.
When the while(0) is terminated with a semicolon, the do { } while(0);
block becomes a compound statement again. |
324fb26ba803a999bedc29e93c46c84f27abf5b7 |
|
23-May-2011 |
Sumit Bose <sbose@redhat.com> |
Set _GNU_SOURCE globally |
75b1a17efec759980a636b41e0c8144230725802 |
|
10-Jun-2010 |
Stephen Gallagher <sgallagh@redhat.com> |
Make sure to close varargs before returning from a function
https://fedorahosted.org/sssd/ticket/528 |
06247775aa9c49ffce72827921eb45e2d04c6aa1 |
|
10-Jun-2010 |
Stephen Gallagher <sgallagh@redhat.com> |
Properly handle read() and write() throughout the SSSD
We need to guarantee at all times that reads and writes complete
successfully. This means that they must be checked for returning
EINTR and EAGAIN, and all writes must be wrapped in a loop to
ensure that they do not truncate their output. |
717bab5b52c755c950eb451d95a805d474d0ef07 |
|
27-May-2010 |
Sumit Bose <sbose@redhat.com> |
Krb5 locator plugin returns KRB5_PLUGIN_NO_HANDLE
To allow a fallback to the setting in krb5.conf the locator plugin
returns KRB5_PLUGIN_NO_HANDLE in nearly all error conditions. Only if the
call back fails the error code of the callback is returned. |
abe2d10564aac5e126bf3536b7f9871f00a262b1 |
|
25-Mar-2010 |
Sumit Bose <sbose@redhat.com> |
Fix kinit after password change
In an environment with slave KDCs and a central server where password
changes are allowed the request for a new TGT immediately after the
password change should be made against this server, because the slave
server might not know the new password.
To achieve this the Kerberos localtor plugin now returns the address of
the kpasswd server as master_kdc. |
cf5f37509e0215de9fb0bd169d49c701a65de769 |
|
15-Mar-2010 |
Jakub Hrozek <jhrozek@redhat.com> |
Fix segfault in the locator plugin |
5096bb4c2242b426aa6f5ea2cb82223e0b81a345 |
|
12-Mar-2010 |
Sumit Bose <sbose@redhat.com> |
Add krb5_kpasswd option |
03e7e62d439a2ef21f3c1c074a593a15606a0e1e |
|
11-Mar-2010 |
Sumit Bose <sbose@redhat.com> |
Write the IP address of the KDC to the kdcinfo file |
1c48b5a62f73234ed26bb20f0ab345ab61cda0ab |
|
18-Feb-2010 |
Stephen Gallagher <sgallagh@redhat.com> |
Rename server/ directory to src/
Also update BUILD.txt |