summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-04-02 00:07:54 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-04-02 00:07:54 +0000
commit0a9e1209814e7fa982c1ac84ef7647358fba5c1c (patch)
treeebb4293affc6af8a6b3b6e1bc943f6bcc270b987 /usr.sbin
parente6a4b8c7dfa4c88e9971d69bf703864aa6e36ba5 (diff)
asprintf; millert ok
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/popa3d/mailbox.c7
-rw-r--r--usr.sbin/popa3d/virtual.c23
2 files changed, 13 insertions, 17 deletions
diff --git a/usr.sbin/popa3d/mailbox.c b/usr.sbin/popa3d/mailbox.c
index c5b5a6b9764..ae7e58f8902 100644
--- a/usr.sbin/popa3d/mailbox.c
+++ b/usr.sbin/popa3d/mailbox.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mailbox.c,v 1.4 2002/09/06 19:18:10 deraadt Exp $ */
+/* $OpenBSD: mailbox.c,v 1.5 2003/04/02 00:07:53 deraadt Exp $ */
/*
* Mailbox access.
@@ -294,9 +294,8 @@ int mailbox_open(char *spool, char *mailbox)
mailbox_fd = -1;
- pathname = malloc(strlen(spool) + strlen(mailbox) + 2);
- if (!pathname) return 1;
- sprintf(pathname, "%s/%s", spool, mailbox);
+ if (asprintf(&pathname, "%s/%s", spool, mailbox) == -1)
+ return 1;
if (lstat(pathname, &stat)) {
free(pathname);
diff --git a/usr.sbin/popa3d/virtual.c b/usr.sbin/popa3d/virtual.c
index 11091d0e038..0d4da4f43aa 100644
--- a/usr.sbin/popa3d/virtual.c
+++ b/usr.sbin/popa3d/virtual.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: virtual.c,v 1.3 2002/03/27 14:08:43 camield Exp $ */
+/* $OpenBSD: virtual.c,v 1.4 2003/04/02 00:07:53 deraadt Exp $ */
/*
* Virtual domain support.
@@ -105,10 +105,8 @@ struct passwd *virtual_userpass(char *user, char *pass, int *known)
if (strchr(address, '/') || strchr(user, '/'))
return NULL;
- pathname = malloc(strlen(VIRTUAL_HOME_PATH) + strlen(address) +
- strlen(VIRTUAL_AUTH_PATH) + strlen(user) + 4);
- if (!pathname) return NULL;
- sprintf(pathname, "%s/%s", VIRTUAL_HOME_PATH, address);
+ if (asprintf(&pathname, "%s/%s", VIRTUAL_HOME_PATH, address) == -1)
+ return NULL;
if (lstat(pathname, &stat)) {
if (errno == ENOENT)
@@ -122,8 +120,11 @@ struct passwd *virtual_userpass(char *user, char *pass, int *known)
if (!(address = strdup(address))) return NULL;
virtual_domain = address;
- sprintf(pathname, "%s/%s/%s/%s", VIRTUAL_HOME_PATH, address,
- VIRTUAL_AUTH_PATH, user);
+ free(pathname);
+
+ if (asprintf(&pathname, "%s/%s/%s/%s", VIRTUAL_HOME_PATH, address,
+ VIRTUAL_AUTH_PATH, user) == -1)
+ return NULL;
if ((fd = open(pathname, O_RDONLY)) < 0 && errno != ENOENT) {
log_error("open");
@@ -132,15 +133,11 @@ struct passwd *virtual_userpass(char *user, char *pass, int *known)
free(pathname);
- virtual_spool = malloc(strlen(VIRTUAL_HOME_PATH) +
- strlen(virtual_domain) +
- strlen(VIRTUAL_SPOOL_PATH) + 3);
- if (!virtual_spool) {
+ if (asprintf(&virtual_spool, "%s/%s/%s", VIRTUAL_HOME_PATH,
+ virtual_domain, VIRTUAL_SPOOL_PATH) == -1) {
close(fd);
return NULL;
}
- sprintf(virtual_spool, "%s/%s/%s", VIRTUAL_HOME_PATH, virtual_domain,
- VIRTUAL_SPOOL_PATH);
size = 0;
if (fd >= 0) {