diff options
Diffstat (limited to 'aac-enc-dabplus-zmq.c')
-rw-r--r-- | aac-enc-dabplus-zmq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aac-enc-dabplus-zmq.c b/aac-enc-dabplus-zmq.c index 8d18a23..0994d04 100644 --- a/aac-enc-dabplus-zmq.c +++ b/aac-enc-dabplus-zmq.c @@ -211,8 +211,8 @@ int main(int argc, char *argv[]) { fprintf(stderr, "Error occurred during zmq_socket: %s\n", zmq_strerror(errno)); return 2; } - if (zmq_bind(zmq_sock, outuri) != 0) { - fprintf(stderr, "Error occurred during zmq_bind: %s\n", zmq_strerror(errno)); + if (zmq_connect(zmq_sock, outuri) != 0) { + fprintf(stderr, "Error occurred during zmq_connect: %s\n", zmq_strerror(errno)); return 2; } } else { |