~ubuntu-branches/ubuntu/wily/irssi-plugin-xmpp/wily

« back to all changes in this revision

Viewing changes to src/core/popenRWE.c

  • Committer: Package Import Robot
  • Author(s): Florian Schlichting
  • Date: 2015-03-27 21:44:52 UTC
  • Revision ID: package-import@ubuntu.com-20150327214452-fia86qdiv03fwee7
Tags: 0.52+git20140102-3
* Update XMPP-PGP support (closes: #779156)
* Add strip_resource_08082009.patch to optionally ignore random resource
  strings
* Bump Standards-Version to 3.9.6 (no changes necessary)

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
        close(rwepipe[0]);
89
89
        close(rwepipe[1]);
90
90
        close(rwepipe[2]);
91
 
        rc = waitpid(pid, &status, 0);
 
91
        do {
 
92
                rc = waitpid(pid, &status, 0);
 
93
        } while (rc != 0 && ! WIFEXITED(status));
92
94
        return status;
93
95
}