/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 plugins.d/mandos-client.c

  • Committer: Teddy Hogeborn
  • Date: 2013-10-13 16:57:10 UTC
  • mfrom: (624 trunk)
  • mto: This revision was merged to the branch mainline in revision 625.
  • Revision ID: teddy@recompile.se-20131013165710-y695wckw4jmujvma
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
187
187
  
188
188
  TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
189
189
                             program_invocation_short_name));
190
 
  return TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
 
190
  return (int)TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
191
191
}
192
192
 
193
193
/*
2331
2331
        fprintf_plus(stderr, "Retrying in %d seconds\n",
2332
2332
                     (int)retry_interval);
2333
2333
      }
2334
 
      sleep((int)retry_interval);
 
2334
      sleep((unsigned int)retry_interval);
2335
2335
    }
2336
2336
    
2337
2337
    if (not quit_now){