/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugin-runner.c

  • Committer: Teddy Hogeborn
  • Date: 2014-03-29 05:16:37 UTC
  • Revision ID: teddy@recompile.se-20140329051637-abjokbmd5aptbf5u
Minor changes to minimize diff from last release.

* plugins.d/mandos-client.c: Minor changes (mostly white space).

Show diffs side-by-side

added added

removed removed

Lines of Context:
985
985
    ret = set_cloexec_flag(pipefd[0]);
986
986
    if(ret < 0){
987
987
      error(0, errno, "set_cloexec_flag");
988
 
      TEMP_FAILURE_RETRY(close(pipefd[0]));
989
 
      TEMP_FAILURE_RETRY(close(pipefd[1]));
990
988
      exitstatus = EX_OSERR;
991
989
      goto fallback;
992
990
    }
993
991
    ret = set_cloexec_flag(pipefd[1]);
994
992
    if(ret < 0){
995
993
      error(0, errno, "set_cloexec_flag");
996
 
      TEMP_FAILURE_RETRY(close(pipefd[0]));
997
 
      TEMP_FAILURE_RETRY(close(pipefd[1]));
998
994
      exitstatus = EX_OSERR;
999
995
      goto fallback;
1000
996
    }