The branch main has been updated by des:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=6d777389e19d3bebde515e88e8405de45d8af7bd

commit 6d777389e19d3bebde515e88e8405de45d8af7bd
Author:     Dag-Erling Smørgrav <d...@freebsd.org>
AuthorDate: 2023-06-05 16:10:53 +0000
Commit:     Dag-Erling Smørgrav <d...@freebsd.org>
CommitDate: 2023-06-05 16:11:44 +0000

    xargs: Fix typo in error message.
    
    MFC after:      1 week
    Sponsored by:   Klara, Inc.
---
 usr.bin/xargs/xargs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.bin/xargs/xargs.c b/usr.bin/xargs/xargs.c
index cadb0c76cc2f..eb496d8e09fe 100644
--- a/usr.bin/xargs/xargs.c
+++ b/usr.bin/xargs/xargs.c
@@ -526,7 +526,7 @@ prerun(int argc, char *argv[])
                *tmp = *avj++;
                if (repls && strstr(*tmp, replstr) != NULL) {
                        if (strnsubst(tmp++, replstr, inpline, (size_t)Sflag)) {
-                               warnx("comamnd line cannot be assembled, too 
long");
+                               warnx("command line cannot be assembled, too 
long");
                                xexit(*argv, 1);
                        }
                        if (repls > 0)

Reply via email to