~ubuntu-branches/ubuntu/saucy/zeromq3/saucy

« back to all changes in this revision

Viewing changes to src/dist.cpp

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2012-10-16 19:49:30 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20121016194930-98r0bi746eoaa4iv
Tags: 3.2.1~rc2+dfsg-1
* New upstream RC release (Closes: #690704)
* Bump Standards-Version to 3.9.4 (no changes needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
 
129
129
void zmq::dist_t::distribute (msg_t *msg_, int flags_)
130
130
{
 
131
    // flags_ is unused
 
132
    (void)flags_;
 
133
 
131
134
    //  If there are no matching pipes available, simply drop the message.
132
135
    if (matching == 0) {
133
136
        int rc = msg_->close ();