Purpose of commit: cleanup
Commit summary:
---------------
2006-05-23 Thorsten Kukuk <kukuk@thkukuk.de>
* modules/pam_echo/pam_echo.c (pam_echo): Use pam_modutil_read()
instead of read().
+2006-05-23 Thorsten Kukuk <kukuk@thkukuk.de>
+
+ * modules/pam_echo/pam_echo.c (pam_echo): Use pam_modutil_read()
+ instead of read().
+
2006-05-22 Thorsten Kukuk <kukuk@thkukuk.de>
* modules/pam_listfile/pam_listfile.c (pam_sm_authenticate):
#define PAM_SM_SESSION
#include <security/pam_modules.h>
+#include <security/pam_modutil.h>
#include <security/_pam_macros.h>
#include <security/pam_ext.h>
if (!mtmp)
return PAM_BUF_ERR;
- if (read (fd, mtmp, st.st_size) == -1)
+ if (pam_modutil_read (fd, mtmp, st.st_size) == -1)
{
pam_syslog (pamh, LOG_ERR, "Error while reading %s: %m", file);
free (mtmp);