X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-unix-socket.c;h=c5c6a2b9e82dfdcc3cf82574ff0ec2a829ef5264;hb=a7a2d006baae4152d338bd0bb4de1687084b1b07;hp=ec900481495f5544cea11cdceaf301f7e33d1bee;hpb=6e170b4c7802f4f388ec63d4c1146de830d98669;p=sliver-openvswitch.git diff --git a/tests/test-unix-socket.c b/tests/test-unix-socket.c index ec9004814..c5c6a2b9e 100644 --- a/tests/test-unix-socket.c +++ b/tests/test-unix-socket.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010 Nicira Networks. + * Copyright (c) 2010, 2012 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -42,7 +42,7 @@ main(int argc, char *argv[]) alarm(5); /* Create a listening socket under name 'sockname1'. */ - sock1 = make_unix_socket(SOCK_STREAM, false, false, sockname1, NULL); + sock1 = make_unix_socket(SOCK_STREAM, false, sockname1, NULL); if (sock1 < 0) { ovs_fatal(-sock1, "%s: bind failed", sockname1); } @@ -52,7 +52,7 @@ main(int argc, char *argv[]) /* Connect to 'sockname2' (which should be the same file, perhaps under a * different name). */ - sock2 = make_unix_socket(SOCK_STREAM, false, false, NULL, sockname2); + sock2 = make_unix_socket(SOCK_STREAM, false, NULL, sockname2); if (sock2 < 0) { ovs_fatal(-sock2, "%s: connect failed", sockname2); }