diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-03-09 20:01:53 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-03-09 20:01:53 +0100 |
commit | 05feefe0fb049bb0f7c59584058ee0350462920c (patch) | |
tree | 7408358006c490ae4a48ae39c012591495ac99c9 /src/util.h | |
parent | 34df5a34e1d0ac4bba453fb5f52f18a2f5f260f9 (diff) |
dbus: properly generate UnknownInterface, UnknownProperty and PropertyReadOnly errors
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h index a2e3b94439..13e5f6203a 100644 --- a/src/util.h +++ b/src/util.h @@ -386,6 +386,8 @@ void execute_directory(const char *directory, DIR *_d, char *argv[]); int kill_and_sigcont(pid_t pid, int sig); +bool nulstr_contains(const char*nulstr, const char *needle); + #define NULSTR_FOREACH(i, l) \ for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1) |