diff options
author | Max Romanov <max.romanov@nginx.com> | 2018-09-07 18:45:14 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2018-09-07 18:45:14 +0300 |
commit | 903ee2de6419cd2b0a29c4f3017a6795dd168741 (patch) | |
tree | dcc76b8d7bbeff8137dc1ecb123b1e246a23dbd2 /src/nxt_port.c | |
parent | 511a0fa7605e61f90e524edfbcbefa230573e32f (diff) | |
download | unit-903ee2de6419cd2b0a29c4f3017a6795dd168741.tar.gz unit-903ee2de6419cd2b0a29c4f3017a6795dd168741.tar.bz2 |
Misspelled variable names fixed.
Diffstat (limited to 'src/nxt_port.c')
-rw-r--r-- | src/nxt_port.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_port.c b/src/nxt_port.c index c4b2af96..3d18fa67 100644 --- a/src/nxt_port.c +++ b/src/nxt_port.c @@ -195,7 +195,7 @@ nxt_port_send_new_port(nxt_task_t *task, nxt_runtime_t *rt, port = nxt_process_port_first(process); - if (nxt_proc_conn_martix[port->type][new_port->type]) { + if (nxt_proc_conn_matrix[port->type][new_port->type]) { (void) nxt_port_send_port(task, port, new_port, stream); } |