/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« back to all changes in this revision

Viewing changes to plugins.d/password-prompt.c

* initramfs-tools-script: Bug fix: Add missing "--options" argument to
                          getopt.

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