summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-03-09 04:35:23 -0400
committerJune McEnroe <june@causal.agency>2020-03-09 20:01:30 -0400
commit1c2f9fffe7ddf464ca3f2bd70dac7db90c5b8fca (patch)
tree5e6c5a8287ef53b59d45908eee6ebb3a5944b733 /bin
parentReplace eaccess with faccessat (diff)
downloadsrc-1c2f9fffe7ddf464ca3f2bd70dac7db90c5b8fca.tar.gz
src-1c2f9fffe7ddf464ca3f2bd70dac7db90c5b8fca.zip
Replace strchrnul with strchr
Diffstat (limited to 'bin')
-rw-r--r--bin/1sh/input.c6
-rw-r--r--bin/1sh/mail.c3
2 files changed, 6 insertions, 3 deletions
diff --git a/bin/1sh/input.c b/bin/1sh/input.c
index f2295a02..d4bc93df 100644
--- a/bin/1sh/input.c
+++ b/bin/1sh/input.c
@@ -224,7 +224,8 @@ again:
 	p = parsefile->buf + (parsenextc - parsefile->buf);
 	end = p + parselleft;
 	*end = '\0';
-	q = strchrnul(p, '\n');
+	q = strchr(p, '\n');
+	if (!q) q = strchr(p, '\0');
 	if (q != end && *q == '\0') {
 		/* delete nul characters */
 		for (r = q; q != end; q++) {
@@ -236,7 +237,8 @@ again:
 			goto again;
 		end = p + parselleft;
 		*end = '\0';
-		q = strchrnul(p, '\n');
+		q = strchr(p, '\n');
+		if (!q) q = strchr(p, '\0');
 	}
 	if (q == end) {
 		parsenleft = parselleft;
diff --git a/bin/1sh/mail.c b/bin/1sh/mail.c
index 8c6b59ae..01b370c6 100644
--- a/bin/1sh/mail.c
+++ b/bin/1sh/mail.c
@@ -87,7 +87,8 @@ chkmail(int silent)
 		p = mpath;
 		if (*p == '\0')
 			break;
-		mpath = strchrnul(mpath, ':');
+		mpath = strchr(p, ':');
+		if (!mpath) mpath = strchr(p, '\0');
 		if (*mpath != '\0') {
 			*mpath++ = '\0';
 			if (p == mpath - 1)