X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Funixctl.c;h=4ab493d48775ea0504b57d4f4233b52c7f3483a9;hb=1b58552471d1149033cbb6b85d2a5d567f8f8e0e;hp=d8974c9e44503ac0d93d779b50853b019a75fec7;hpb=324f0c59d2bf3a0ad74c93b683b6ceeb1d732304;p=sliver-openvswitch.git diff --git a/lib/unixctl.c b/lib/unixctl.c index d8974c9e4..4ab493d48 100644 --- a/lib/unixctl.c +++ b/lib/unixctl.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira Networks. + * Copyright (c) 2008, 2009, 2010, 2011, 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. @@ -221,7 +221,7 @@ unixctl_server_create(const char *path, struct unixctl_server **serverp) program_name, (long int) getpid()); } - error = pstream_open(punix_path, &listener); + error = pstream_open(punix_path, &listener, 0); if (error) { ovs_error(error, "could not initialize control socket %s", punix_path); goto exit; @@ -422,7 +422,8 @@ unixctl_client_create(const char *path, struct jsonrpc **client) abs_path = abs_file_name(ovs_rundir(), path); unix_path = xasprintf("unix:%s", abs_path); - error = stream_open_block(stream_open(unix_path, &stream), &stream); + error = stream_open_block(stream_open(unix_path, &stream, DSCP_DEFAULT), + &stream); free(unix_path); free(abs_path);