/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-10-30 03:02:49 UTC
  • Revision ID: teddy@recompile.se-20161030030249-4tcvjkfie8eye3n2
debian/control: Allow GnuPG 2 with the server.

debian/control (Package: mandos/Depends:): Change "gnupg" to "gnupg2 |
                                           gnupg".

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 * "browse_callback", and parts of "main".
10
10
 * 
11
11
 * Everything else is
12
 
 * Copyright © 2008-2017 Teddy Hogeborn
13
 
 * Copyright © 2008-2017 Björn Påhlsson
 
12
 * Copyright © 2008-2016 Teddy Hogeborn
 
13
 * Copyright © 2008-2016 Björn Påhlsson
14
14
 * 
15
15
 * This program is free software: you can redistribute it and/or
16
16
 * modify it under the terms of the GNU General Public License as
1079
1079
    bool match = false;
1080
1080
    {
1081
1081
      char *interface = NULL;
1082
 
      while((interface = argz_next(mc->interfaces,
1083
 
                                   mc->interfaces_size,
1084
 
                                   interface))){
 
1082
      while((interface=argz_next(mc->interfaces, mc->interfaces_size,
 
1083
                                 interface))){
1085
1084
        if(if_nametoindex(interface) == (unsigned int)if_index){
1086
1085
          match = true;
1087
1086
          break;
1494
1493
  return retval;
1495
1494
}
1496
1495
 
 
1496
__attribute__((nonnull))
1497
1497
static void resolve_callback(AvahiSServiceResolver *r,
1498
1498
                             AvahiIfIndex interface,
1499
1499
                             AvahiProtocol proto,
2196
2196
  
2197
2197
  /* Sleep checking until interface is running.
2198
2198
     Check every 0.25s, up to total time of delay */
2199
 
  for(int i = 0; i < delay * 4; i++){
 
2199
  for(int i=0; i < delay * 4; i++){
2200
2200
    if(interface_is_running(interface)){
2201
2201
      break;
2202
2202
    }
3023
3023
      /* Take down the network interfaces which were brought up */
3024
3024
      {
3025
3025
        char *interface = NULL;
3026
 
        while((interface = argz_next(interfaces_to_take_down,
3027
 
                                     interfaces_to_take_down_size,
3028
 
                                     interface))){
 
3026
        while((interface=argz_next(interfaces_to_take_down,
 
3027
                                   interfaces_to_take_down_size,
 
3028
                                   interface))){
3029
3029
          ret = take_down_interface(interface);
3030
3030
          if(ret != 0){
3031
3031
            errno = ret;