diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-01-11 03:23:04 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-01-11 03:23:04 +0100 |
commit | 19a2bd80c18d2845f0e37699c8d8df8c8cb4ed78 (patch) | |
tree | a1c1c71fa932ae3b24c9800d95b8a3a69c3781f2 /src/journal | |
parent | 731a676c206bb1b48e7f736ce9f5b730252d1601 (diff) |
sd-journal: implement a number of non-implemented calls from the API for now
Diffstat (limited to 'src/journal')
-rw-r--r-- | src/journal/sd-journal.c | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c index fe9208c01b..5e1fd4773e 100644 --- a/src/journal/sd-journal.c +++ b/src/journal/sd-journal.c @@ -1590,27 +1590,27 @@ _public_ int sd_journal_process(sd_journal *j) { } } -_public_ int sd_journal_query_unique(sd_journal *j, const char *field) { - if (!j) - return -EINVAL; - if (!field) - return -EINVAL; - - return -ENOTSUP; -} - -_public_ int sd_journal_enumerate_unique(sd_journal *j, const void **data, size_t *l) { - if (!j) - return -EINVAL; - if (!data) - return -EINVAL; - if (!l) - return -EINVAL; - - return -ENOTSUP; -} - -_public_ void sd_journal_restart_unique(sd_journal *j) { - if (!j) - return; -} +/* _public_ int sd_journal_query_unique(sd_journal *j, const char *field) { */ +/* if (!j) */ +/* return -EINVAL; */ +/* if (!field) */ +/* return -EINVAL; */ + +/* return -ENOTSUP; */ +/* } */ + +/* _public_ int sd_journal_enumerate_unique(sd_journal *j, const void **data, size_t *l) { */ +/* if (!j) */ +/* return -EINVAL; */ +/* if (!data) */ +/* return -EINVAL; */ +/* if (!l) */ +/* return -EINVAL; */ + +/* return -ENOTSUP; */ +/* } */ + +/* _public_ void sd_journal_restart_unique(sd_journal *j) { */ +/* if (!j) */ +/* return; */ +/* } */ |