diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-05-15 13:34:07 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-05-15 13:34:07 +0200 |
commit | ae94bb1a7003c42c43356705d10d841446b6ca28 (patch) | |
tree | 7f6e10d3dc5dd9c60fb924f8900fbebf1ec55473 /doc/examples/daemon-depedencies/test-daemon.c | |
parent | doc: bus-chmod: octals (diff) | |
download | bus-ae94bb1a7003c42c43356705d10d841446b6ca28.tar.gz bus-ae94bb1a7003c42c43356705d10d841446b6ca28.tar.bz2 bus-ae94bb1a7003c42c43356705d10d841446b6ca28.tar.xz |
update examples
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | doc/examples/daemon-depedencies/test-daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/daemon-depedencies/test-daemon.c b/doc/examples/daemon-depedencies/test-daemon.c index 86095a1..386d107 100644 --- a/doc/examples/daemon-depedencies/test-daemon.c +++ b/doc/examples/daemon-depedencies/test-daemon.c @@ -19,7 +19,7 @@ retry: if (!WEXITSTATUS(system(arg))) { t(bus_open(&bus, getenv("BUS_INIT"), BUS_WRONLY)); sprintf(arg, "0 %s %s", argv[2], argv[1]); - t(bus_write(&bus, arg)); + t(bus_write(&bus, arg, 0)); bus_close(&bus); } else if (!strcmp(argv[2], "started")) { argv[2] = "ready"; |