/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 plugin-runner.c

  • Committer: Teddy Hogeborn
  • Date: 2008-09-06 15:41:27 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080906154127-oxfrwsrbu0inhljv
* plugin-runner.c (main): Bug fix: use built-in default value if
                          "--plugin-dir" was not used.

Show diffs side-by-side

added added

removed removed

Lines of Context:
742
742
    }
743
743
 
744
744
    char *filename;
745
 
    ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
 
745
    if(plugindir == NULL){
 
746
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
 
747
    } else {
 
748
      ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
 
749
    }
746
750
    if(ret < 0){
747
751
      perror("asprintf");
748
752
      continue;