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

  • Committer: Teddy Hogeborn
  • Date: 2008-08-12 20:00:36 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080812200036-z10kv68i2c1kcagg
* Makefile (install-client): Bug fix: Do not fail if plugin dir
                             already exist.  Bug fix: Do not fail if
                             old keys exist.
  (uninstall-server, uninstall-client, purge-server): Bug fix: Removed
                                                      invalid
                                                      "--force" option
                                                      for rmdir.
  (purge-server): Remove "mandos.conf", not "server.conf".

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
 
67
67
#define BUFFER_SIZE 256
68
68
 
69
 
const char *argp_program_version = "plugin-runner 1.0";
 
69
const char *argp_program_version = "mandos-client 1.0";
70
70
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
71
71
 
72
72
struct process;
186
186
}
187
187
 
188
188
int main(int argc, char *argv[]){
189
 
  const char *plugindir = "/lib/mandos/plugins.d";
 
189
  const char *plugindir = "/conf/conf.d/mandos/plugins.d";
190
190
  size_t d_name_len;
191
191
  DIR *dir = NULL;
192
192
  struct dirent *dirst;