/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 at bsnet
  • Date: 2011-12-25 00:43:51 UTC
  • Revision ID: teddy@fukt.bsnet.se-20111225004351-3hw3msbs8ooesltd
Removed implemented TODO entry

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-2012 Teddy Hogeborn
13
 
 * Copyright © 2008-2012 Björn Påhlsson
 
12
 * Copyright © 2008-2011 Teddy Hogeborn
 
13
 * Copyright © 2008-2011 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
1450
1450
          perror_plus("setenv");
1451
1451
          _exit(EX_OSERR);
1452
1452
        }
1453
 
        ret = setenv("VERBOSITY", debug ? "1" : "0", 1);
 
1453
        ret = setenv("VERBOSE", debug ? "1" : "0", 1);
1454
1454
        if(ret == -1){
1455
1455
          perror_plus("setenv");
1456
1456
          _exit(EX_OSERR);
1473
1473
          _exit(EX_OSERR);
1474
1474
        }
1475
1475
        free(delaystring);
1476
 
        if(connect_to != NULL){
1477
 
          ret = setenv("CONNECT", connect_to, 1);
1478
 
          if(ret == -1){
1479
 
            perror_plus("setenv");
1480
 
            _exit(EX_OSERR);
1481
 
          }
1482
 
        }
1483
1476
        if(execl(fullname, direntry->d_name, mode, NULL) == -1){
1484
1477
          perror_plus("execl");
1485
1478
          _exit(EXIT_FAILURE);
1608
1601
        .group = 2 },
1609
1602
      { .name = "retry", .key = 132,
1610
1603
        .arg = "SECONDS",
1611
 
        .doc = "Retry interval used when denied by the Mandos server",
 
1604
        .doc = "Retry interval used when denied by the mandos server",
1612
1605
        .group = 2 },
1613
1606
      { .name = "network-hook-dir", .key = 133,
1614
1607
        .arg = "DIR",