/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: 2016-12-12 18:25:02 UTC
  • Revision ID: teddy@recompile.se-20161212182502-72seb9hxiu65cgwa
Add spaces around all '=' signs in all C code.

* plugin-runner.c: Add white space around all '=' signs.
* plugins.d/mandos-client.c: - '' -
* plugins.d/plymouth.c: - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
1079
1079
    bool match = false;
1080
1080
    {
1081
1081
      char *interface = NULL;
1082
 
      while((interface=argz_next(mc->interfaces, mc->interfaces_size,
1083
 
                                 interface))){
 
1082
      while((interface = argz_next(mc->interfaces,
 
1083
                                   mc->interfaces_size,
 
1084
                                   interface))){
1084
1085
        if(if_nametoindex(interface) == (unsigned int)if_index){
1085
1086
          match = true;
1086
1087
          break;
2196
2197
  
2197
2198
  /* Sleep checking until interface is running.
2198
2199
     Check every 0.25s, up to total time of delay */
2199
 
  for(int i=0; i < delay * 4; i++){
 
2200
  for(int i = 0; i < delay * 4; i++){
2200
2201
    if(interface_is_running(interface)){
2201
2202
      break;
2202
2203
    }
3023
3024
      /* Take down the network interfaces which were brought up */
3024
3025
      {
3025
3026
        char *interface = NULL;
3026
 
        while((interface=argz_next(interfaces_to_take_down,
3027
 
                                   interfaces_to_take_down_size,
3028
 
                                   interface))){
 
3027
        while((interface = argz_next(interfaces_to_take_down,
 
3028
                                     interfaces_to_take_down_size,
 
3029
                                     interface))){
3029
3030
          ret = take_down_interface(interface);
3030
3031
          if(ret != 0){
3031
3032
            errno = ret;