/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-25 18:50:00 UTC
  • mfrom: (24.1.176 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20110725185000-paes3keuo0dj4m0z
Merge from Björn.

Show diffs side-by-side

added added

removed removed

Lines of Context:
208
208
    return 1;
209
209
  }
210
210
  
211
 
  struct dirent **direntries;
 
211
  struct dirent **direntries = NULL;
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(dirent);
217
218
  return ret > 0;
218
219
}
219
220