summaryrefslogtreecommitdiff
path: root/lib/vconn-stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/vconn-stream.c')
-rw-r--r--lib/vconn-stream.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/vconn-stream.c b/lib/vconn-stream.c
index 0ccc99fd4..23c0aaecd 100644
--- a/lib/vconn-stream.c
+++ b/lib/vconn-stream.c
@@ -78,7 +78,7 @@ vconn_stream_open(const char *name, uint32_t allowed_versions,
struct stream *stream;
int error;
- error = stream_open_with_default_port(name, OFP_OLD_PORT, &stream, dscp);
+ error = stream_open_with_default_port(name, OFP_PORT, &stream, dscp);
if (!error) {
error = stream_connect(stream);
if (!error || error == EAGAIN) {
@@ -311,8 +311,7 @@ pvconn_pstream_listen(const char *name, uint32_t allowed_versions,
struct pstream *pstream;
int error;
- error = pstream_open_with_default_port(name, OFP_OLD_PORT,
- &pstream, dscp);
+ error = pstream_open_with_default_port(name, OFP_PORT, &pstream, dscp);
if (error) {
return error;
}