git: 91110e5b2438 - stable/15 - install: Fix typo
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 28 Jul 2026 09:34:16 UTC
The branch stable/15 has been updated by des:
URL: https://cgit.FreeBSD.org/src/commit/?id=91110e5b2438f23bb529a7af5d5cd1681366181d
commit 91110e5b2438f23bb529a7af5d5cd1681366181d
Author: Dag-Erling Smørgrav <des@FreeBSD.org>
AuthorDate: 2026-07-22 06:04:18 +0000
Commit: Dag-Erling Smørgrav <des@FreeBSD.org>
CommitDate: 2026-07-28 09:32:28 +0000
install: Fix typo
MFC after: 1 week
Reported by: markj
Fixes: d34870708db9 ("install: Allow installing stdin")
(cherry picked from commit 0eef3d01c22a5e00cd2cf10c34871eddbfd22aa0)
---
usr.bin/xinstall/xinstall.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c
index f2e0a523d4cf..7636da20153b 100644
--- a/usr.bin/xinstall/xinstall.c
+++ b/usr.bin/xinstall/xinstall.c
@@ -65,7 +65,7 @@
#ifndef _PATH_STDIN
# ifndef _PATH_DEV
-# defne _PATH_DEV "/dev/"
+# define _PATH_DEV "/dev/"
# endif
# define _PATH_STDIN _PATH_DEV "stdin"
#endif