aboutsummaryrefslogtreecommitdiff
path: root/src/main/test_ipc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/test_ipc.c')
-rw-r--r--src/main/test_ipc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/test_ipc.c b/src/main/test_ipc.c
index f50b453..b0b09cb 100644
--- a/src/main/test_ipc.c
+++ b/src/main/test_ipc.c
@@ -154,6 +154,12 @@ main (int argc, char *argv[])
154 return 1; 154 return 1;
155 } 155 }
156 EXTRACTOR_extract (pl, NULL, buf, sizeof (buf), &process_replies, "main-cls"); 156 EXTRACTOR_extract (pl, NULL, buf, sizeof (buf), &process_replies, "main-cls");
157 if (0 == ret)
158 {
159 /* do it again... */
160 ret = 2;
161 EXTRACTOR_extract (pl, NULL, buf, sizeof (buf), &process_replies, "main-cls");
162 }
157 EXTRACTOR_plugin_remove_all (pl); 163 EXTRACTOR_plugin_remove_all (pl);
158 return ret; 164 return ret;
159} 165}