summaryrefslogtreecommitdiffstats
path: root/lib/libutil/auth.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1998-10-09 07:32:38 +0000
committerjkh <jkh@FreeBSD.org>1998-10-09 07:32:38 +0000
commit5f9952e765ec8cd7e1faad8107ba5f81f0f8b893 (patch)
tree2b0cea8d51d06bd0a43610cfd69c032ba4f8d442 /lib/libutil/auth.c
parent3388a213ada302b98e4023667c923fa7caeffed4 (diff)
downloadFreeBSD-src-5f9952e765ec8cd7e1faad8107ba5f81f0f8b893.zip
FreeBSD-src-5f9952e765ec8cd7e1faad8107ba5f81f0f8b893.tar.gz
o move path in libutil.h to paths.h
o make property_read() take a fd instead to avoid stdio.h mess o update auth to new interface.
Diffstat (limited to 'lib/libutil/auth.c')
-rw-r--r--lib/libutil/auth.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/libutil/auth.c b/lib/libutil/auth.c
index 0894066..05c3917 100644
--- a/lib/libutil/auth.c
+++ b/lib/libutil/auth.c
@@ -32,9 +32,11 @@
*
*/
-#include <stdio.h>
+#include <unistd.h>
#include <syslog.h>
#include <sys/types.h>
+#include <paths.h>
+#include <fcntl.h>
#include <libutil.h>
static properties P;
@@ -42,15 +44,15 @@ static properties P;
static int
initauthconf(const char *path)
{
- FILE *fp;
+ int fd;
if (!P) {
- if ((fp = fopen(path, "r")) == NULL) {
+ if ((fd = open(path, O_RDONLY)) < 0) {
syslog(LOG_ERR, "initauthconf: unable to open file: %s", path);
return 1;
}
- P = properties_read(fp);
- fclose(fp);
+ P = properties_read(fd);
+ close(fd);
if (!P) {
syslog(LOG_ERR, "initauthconf: unable to parse file: %s", path);
return 1;
OpenPOWER on IntegriCloud