~ubuntu-branches/ubuntu/raring/ginkgocadx/raring-proposed

« back to all changes in this revision

Viewing changes to src/cadxcore/xmlrpc/XmlRpcDispatch.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Tille
  • Date: 2011-07-14 16:17:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110714161751-6wngu3xs307thgpr
Tags: 2.5.1.0-1
* New upstream version (all patches applied)
  Closes: #630877
* debian/patches/drop_rpath.patch: Fix remaining rpath issue
* debian/{mime,sharedmimeinfo}: Mime info for DICOM images
  Closes: #631205
* Add upstream manpage + desktop file
* Fixed Vcs fields
* debian/rules:
   - Add new extension liblightvisualizator
   - remove get-orig-source target which becames void because
     upstream dropped the debian/ dir
   - Hack around explicite rpath definitions
* debian/install: move conformance.xml into place
* debian/watch: drop useless comments
* debian/ginkgocadx.lintian-overrides: Drop unneeded overrides
  as well as those which stay in effect.  These should vanish
  once rpath is correctly fixed - so the warning should not
  be hidden here.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
    SourceList::iterator it;
92
92
    for (it=_sources.begin(); it!=_sources.end(); ++it) {
93
93
      int fd = it->getSource()->getfd();
94
 
      if (it->getMask() & ReadableEvent) FD_SET(fd, &inFd);
95
 
      if (it->getMask() & WritableEvent) FD_SET(fd, &outFd);
96
 
      if (it->getMask() & Exception)     FD_SET(fd, &excFd);
97
 
      if (it->getMask() && fd > maxFd)   maxFd = fd;
 
94
      if ( it->getMask() & ReadableEvent) FD_SET((unsigned int)fd, &inFd);
 
95
      if ( it->getMask() & WritableEvent) FD_SET((unsigned int)fd, &outFd);
 
96
      if ( it->getMask() & Exception)     FD_SET((unsigned int)fd, &excFd);
 
97
      if ( it->getMask() && fd > maxFd)   maxFd = fd;
98
98
    }
99
99
 
100
100
    // Check for events