/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: 2014-03-10 10:11:37 UTC
  • Revision ID: teddy@recompile.se-20140310101137-3khoc3qrntp13l08
White space fix: change "if (" to "if(" in C code.

* plugins.d/mandos-client.c (start_mandos_communication): White space
                                                          fix.
  (avahi_loop_with_timeout, main): - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
809
809
                  sizeof(struct sockaddr_in));
810
810
  }
811
811
  if(ret < 0){
812
 
    if ((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
 
812
    if((errno != ECONNREFUSED and errno != ENETUNREACH) or debug){
813
813
      int e = errno;
814
814
      perror_plus("connect");
815
815
      errno = e;
1372
1372
  
1373
1373
  while(true){
1374
1374
    if(mc->current_server == NULL){
1375
 
      if (debug){
 
1375
      if(debug){
1376
1376
        fprintf_plus(stderr, "Wait until first server is found."
1377
1377
                     " No timeout!\n");
1378
1378
      }
1379
1379
      ret = avahi_simple_poll_iterate(s, -1);
1380
1380
    } else {
1381
 
      if (debug){
 
1381
      if(debug){
1382
1382
        fprintf_plus(stderr, "Check current_server if we should run"
1383
1383
                     " it, or wait\n");
1384
1384
      }
1401
1401
                     - ((intmax_t)waited_time.tv_sec * 1000))
1402
1402
                    - ((intmax_t)waited_time.tv_nsec / 1000000));
1403
1403
      
1404
 
      if (debug){
 
1404
      if(debug){
1405
1405
        fprintf_plus(stderr, "Blocking for %" PRIdMAX " ms\n",
1406
1406
                     block_time);
1407
1407
      }
1429
1429
      ret = avahi_simple_poll_iterate(s, (int)block_time);
1430
1430
    }
1431
1431
    if(ret != 0){
1432
 
      if (ret > 0 or errno != EINTR){
 
1432
      if(ret > 0 or errno != EINTR){
1433
1433
        return (ret != 1) ? ret : 0;
1434
1434
      }
1435
1435
    }
2341
2341
      sleep((unsigned int)retry_interval);
2342
2342
    }
2343
2343
    
2344
 
    if (not quit_now){
 
2344
    if(not quit_now){
2345
2345
      exitcode = EXIT_SUCCESS;
2346
2346
    }
2347
2347
    
2487
2487
    struct dirent *direntry = NULL;
2488
2488
    int numentries = scandir(tempdir, &direntries, notdotentries,
2489
2489
                             alphasort);
2490
 
    if (numentries > 0){
 
2490
    if(numentries > 0){
2491
2491
      for(int i = 0; i < numentries; i++){
2492
2492
        direntry = direntries[i];
2493
2493
        char *fullname = NULL;
2508
2508
 
2509
2509
    /* need to clean even if 0 because man page doesn't specify */
2510
2510
    free(direntries);
2511
 
    if (numentries == -1){
 
2511
    if(numentries == -1){
2512
2512
      perror_plus("scandir");
2513
2513
    }
2514
2514
    ret = rmdir(tempdir);