summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-01-10 20:05:18 -0500
committerJune McEnroe <june@causal.agency>2019-01-10 20:05:18 -0500
commit64d994f34fef5d8d5b0c0e5cde1a8c2645e01953 (patch)
tree02fcedc4cd7ebfd2abd0e6fb016c9b00ba6eb50d
parentReplace eaccess with faccessat (diff)
downloadsrc-64d994f34fef5d8d5b0c0e5cde1a8c2645e01953.tar.gz
src-64d994f34fef5d8d5b0c0e5cde1a8c2645e01953.zip
Replace strchrnul with strchr
-rw-r--r--bin/cash/input.c6
-rw-r--r--bin/cash/mail.c3
2 files changed, 6 insertions, 3 deletions
diff --git a/bin/cash/input.c b/bin/cash/input.c
index feb782e7..24ba73b5 100644
--- a/bin/cash/input.c
+++ b/bin/cash/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/cash/mail.c b/bin/cash/mail.c
index 81243b87..6f8a3d39 100644
--- a/bin/cash/mail.c
+++ b/bin/cash/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)