diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-09-15 22:31:01 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-09-15 22:31:01 +0300 |
commit | e5b4594376454bc52cd462d42fdc7e46aad80596 (patch) | |
tree | f90154526fa1835e29b028d8c44bf9b2d73a9928 /src/go/unit/nxt_go_lib.c | |
parent | 838d9946ac2d9c9a9ba41d5b88209bfc5f2325d0 (diff) | |
download | unit-e5b4594376454bc52cd462d42fdc7e46aad80596.tar.gz unit-e5b4594376454bc52cd462d42fdc7e46aad80596.tar.bz2 |
Go: Fixed a bug introduced in the previous changeset.
Diffstat (limited to 'src/go/unit/nxt_go_lib.c')
-rw-r--r-- | src/go/unit/nxt_go_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/go/unit/nxt_go_lib.c b/src/go/unit/nxt_go_lib.c index 474d313b..fe295692 100644 --- a/src/go/unit/nxt_go_lib.c +++ b/src/go/unit/nxt_go_lib.c @@ -175,7 +175,7 @@ nxt_go_ready() port_msg.stream = atol(go_stream); port_msg.pid = getpid(); port_msg.reply_port = 0; - port_msg.type = _NXT_PORT_MSG_READY; + port_msg.type = _NXT_PORT_MSG_PROCESS_READY; port_msg.last = 1; port_msg.mmap = 0; |