summaryrefslogtreecommitdiffstats
path: root/lib
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
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')
-rw-r--r--lib/libutil/auth.c12
-rw-r--r--lib/libutil/libutil.h4
-rw-r--r--lib/libutil/property.c5
3 files changed, 11 insertions, 10 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;
diff --git a/lib/libutil/libutil.h b/lib/libutil/libutil.h
index 7b8f3b3..2aa2ad0 100644
--- a/lib/libutil/libutil.h
+++ b/lib/libutil/libutil.h
@@ -18,7 +18,7 @@
* 5. Modifications may be freely made to this file providing the above
* conditions are met.
*
- * $Id: libutil.h,v 1.18 1998/10/08 23:10:41 jkh Exp $
+ * $Id: libutil.h,v 1.19 1998/10/09 07:28:14 jkh Exp $
*/
#ifndef _LIBUTIL_H_
@@ -54,7 +54,7 @@ int uu_lock __P((const char *_ttyname));
int uu_unlock __P((const char *_ttyname));
int uu_lock_txfr __P((const char *_ttyname, pid_t _pid));
int _secure_path __P((const char *_path, uid_t _uid, gid_t _gid));
-properties properties_read __P((FILE *fp));
+properties properties_read __P((int fd));
void properties_free __P((properties list));
char *property_find __P((properties list, const char *name));
char *auth_getval __P((const char *name));
diff --git a/lib/libutil/property.c b/lib/libutil/property.c
index 3de550b..d7c93d7 100644
--- a/lib/libutil/property.c
+++ b/lib/libutil/property.c
@@ -53,7 +53,7 @@ property_alloc(char *name, char *value)
}
properties
-properties_read(FILE *fp)
+properties_read(int fd)
{
properties head, ptr;
char hold_n[MAX_NAME + 1];
@@ -75,7 +75,7 @@ properties_read(FILE *fp)
}
switch(state) {
case FILL:
- if ((max = fread(buf, 1, sizeof buf, fp)) <= 0) {
+ if ((max = read(fd, buf, sizeof buf)) <= 0) {
state = STOP;
break;
}
@@ -214,4 +214,3 @@ properties_free(properties list)
list = tmp;
}
}
-
OpenPOWER on IntegriCloud