diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-02-24 13:34:12 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-02-24 13:34:12 +0000 |
commit | 4c64893478a9afd04447da4c8078def1fca07f9f (patch) | |
tree | 13f0f7e011ddeee1d4f48abf51a242383e7acd89 /apps/Gateway | |
parent | 9917cdc227c1159d53fb6c7668d3cffbb2fba957 (diff) | |
download | ATCD-4c64893478a9afd04447da4c8078def1fca07f9f.tar.gz |
*** empty log message ***
Diffstat (limited to 'apps/Gateway')
-rw-r--r-- | apps/Gateway/Gateway/Event.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Gateway/Gateway/Event.h b/apps/Gateway/Gateway/Event.h index f99b9a30ad4..2221f63916a 100644 --- a/apps/Gateway/Gateway/Event.h +++ b/apps/Gateway/Gateway/Event.h @@ -195,11 +195,11 @@ public: void encode (void) { this->connection_id_ = htonl (this->connection_id_); - this->total_consumers_ = htonl (this->total_consumers_); for (ACE_INT32 i = 0; i < this->total_consumers_; i++) this->consumers_[i] = htonl (this->consumers_[i]); + this->total_consumers_ = htonl (this->total_consumers_); } // Encode from host byte order to network byte order. |