summaryrefslogtreecommitdiffstats
path: root/src/db/sysdb_services.c
Commit message (Collapse)AuthorAgeFilesLines
* Make DEBUG macro invocations variadicNikolai Kondrashov2014-02-121-37/+37
| | | | | | | | | | | | | | | | | | | | | | | | 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>
* SYSDB: Drop the sysdb_ctx parameter - module sysdb_ops (part 2)Michal Zidek2013-11-151-1/+1
|
* SYSDB: Drop the sysdb_ctx parameter from the sysdb_services moduleMichal Zidek2013-11-151-25/+21
|
* Add domain arguments to sysdb services functionsSimo Sorce2013-01-151-20/+18
| | | | also fix sysdb_svc_add declarations
* Add domain argument to sysdb_remove_attrs()Simo Sorce2013-01-151-1/+2
|
* Use sysdb_search_service() for all svc queriesSimo Sorce2013-01-101-76/+54
|
* Add sysdb_search_service() helper functionSimo Sorce2013-01-101-0/+56
|
* Unify usage of sysdb transactions (part 2).Michal Zidek2012-09-041-3/+18
|
* SYSDB: Use ldb_msg_add_string for simple string additionsJakub Hrozek2012-08-061-2/+2
|
* Add sysdb_set_service_attr and sysdb_set_autofsmap_attrJakub Hrozek2012-04-181-0/+28
|
* Fix uninitialized in_transactionStephen Gallagher2012-02-131-1/+1
| | | | Coverity #12521 and #12491
* SYSDB: extend sysdb_store_service() to accept additional attributesStephen Gallagher2012-01-311-4/+23
|
* SYSDB: add support for enumerating servicesStephen Gallagher2012-01-271-0/+50
|
* SYSDB: Add sysdb routines for manipulating service entriesStephen Gallagher2012-01-271-0/+692