diff options
author | Stephane Letz <letz@grame.fr> | 2013-05-15 19:37:16 +0200 |
---|---|---|
committer | Stephane Letz <letz@grame.fr> | 2013-05-15 19:37:16 +0200 |
commit | 5936f2fbeba0f45d767be476bd20a92c6b2c650b (patch) | |
tree | 9c128e03cf892b204936da3d8051432153243df1 /common/JackNetAPI.cpp | |
parent | 12b20854be2cf2f80d534ac5318d96b1b6e760ce (diff) | |
download | jack2-5936f2fbeba0f45d767be476bd20a92c6b2c650b.tar.gz |
Define NETWORK_PROTOCOL.
Diffstat (limited to 'common/JackNetAPI.cpp')
-rw-r--r-- | common/JackNetAPI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/JackNetAPI.cpp b/common/JackNetAPI.cpp index 443240bd..acc2c152 100644 --- a/common/JackNetAPI.cpp +++ b/common/JackNetAPI.cpp @@ -263,7 +263,7 @@ struct JackNetExtMaster : public JackNetMasterInterface { int InitMaster(jack_slave_t* result) { // Check MASTER <==> SLAVE network protocol coherency - if (fParams.fProtocolVersion != MASTER_PROTOCOL) { + if (fParams.fProtocolVersion != NETWORK_PROTOCOL) { jack_error("Error : slave is running with a different protocol %s", fParams.fName); return -1; } |