/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/password-prompt.c

  • Committer: Teddy Hogeborn
  • Date: 2011-07-16 00:29:19 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110716002919-r77yikuiulj42o40
* initramfs-tools-script: Abort if plugin-runner is missing.  Removed
                          workaround for Debian bug #633582; the
                          workaround required getopt, which can not be
                          guaranteed.
* plugin-runner.c (main): Work around Debian bug #633582.
* plugins.d/mandos-client.c (main): - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
208
208
    return 1;
209
209
  }
210
210
  
211
 
  struct dirent **direntries = NULL;
 
211
  struct dirent **direntries;
212
212
  int ret;
213
213
  ret = scandir("/proc", &direntries, is_plymouth, alphasort);
214
214
  if (ret == -1){
215
215
    error(1, errno, "scandir");
216
216
  }
217
 
  free(direntries);
218
217
  return ret > 0;
219
218
}
220
219