X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=test%2Fbasic.c;fp=test%2Fbasic.c;h=002c5769df4f43288d6a1df0acc9193729a20dde;hb=e84f94c95b02f1ab18f0ab09e8cdc9427b00df14;hp=9b09455afb8c0c6e145c5ded0dc14039271d989f;hpb=a477ea2182c7a2d98e9d1daf502543bfb3459cb5;p=meshlink diff --git a/test/basic.c b/test/basic.c index 9b09455a..002c5769 100644 --- a/test/basic.c +++ b/test/basic.c @@ -6,7 +6,7 @@ int main(int argc, char *argv[]) { // Open a new meshlink instance. - meshlink_handle_t *mesh = meshlink_open("basic_conf", "foo"); + meshlink_handle_t *mesh = meshlink_open("basic_conf", "foo", "basic"); if(!mesh) { fprintf(stderr, "Could not initialize configuration for foo\n"); return 1; @@ -46,7 +46,7 @@ int main(int argc, char *argv[]) { // Check that the name is ignored now, and that we still are "foo". - mesh = meshlink_open("basic_conf", "bar"); + mesh = meshlink_open("basic_conf", "bar", "basic"); if(!mesh) { fprintf(stderr, "Could not open configuration for foo a second time\n"); return 1;