summaryrefslogtreecommitdiff
path: root/lib/tdb/test/external-agent.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2012-06-26 15:18:52 +0930
committerRusty Russell <rusty@rustcorp.com.au>2012-06-26 10:22:03 +0200
commit66f59f040984bef5023fc844097b85bebee88f09 (patch)
tree9d642302f19c7be7149b6c9e4a8ffbd8a99f9376 /lib/tdb/test/external-agent.c
parentd1aeb2d1c3bfb87e9ab4079535867b40fb722fde (diff)
downloadsamba-66f59f040984bef5023fc844097b85bebee88f09.tar.gz
samba-66f59f040984bef5023fc844097b85bebee88f09.tar.bz2
samba-66f59f040984bef5023fc844097b85bebee88f09.zip
tdb: finish weaning off err.h.
Commit 3c4263e7580143c69225729f5b67f09c00add2fd said it removed err.h from tdb, unfortuntely it didn't: tap-interface.h still included it. This finishes it properly! Reported-by:Stefan Metzmacher <metze@samba.org> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Autobuild-User(master): Rusty Russell <rusty@rustcorp.com.au> Autobuild-Date(master): Tue Jun 26 10:22:03 CEST 2012 on sn-devel-104
Diffstat (limited to 'lib/tdb/test/external-agent.c')
-rw-r--r--lib/tdb/test/external-agent.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/tdb/test/external-agent.c b/lib/tdb/test/external-agent.c
index 139de76f9a..8140e70ead 100644
--- a/lib/tdb/test/external-agent.c
+++ b/lib/tdb/test/external-agent.c
@@ -108,12 +108,16 @@ struct agent *prepare_external_agent(void)
int command[2], response[2];
char name[1+PATH_MAX];
- if (pipe(command) != 0 || pipe(response) != 0)
- return NULL;
+ if (pipe(command) != 0 || pipe(response) != 0) {
+ fprintf(stderr, "pipe failed: %s\n", strerror(errno));
+ exit(1);
+ }
pid = fork();
- if (pid < 0)
- return NULL;
+ if (pid < 0) {
+ fprintf(stderr, "fork failed: %s\n", strerror(errno));
+ exit(1);
+ }
if (pid != 0) {
struct agent *agent = malloc(sizeof(*agent));