diff options
| author | Kris Kennaway <kris@FreeBSD.org> | 1999-12-04 02:19:33 +0000 |
|---|---|---|
| committer | Kris Kennaway <kris@FreeBSD.org> | 1999-12-04 02:19:33 +0000 |
| commit | b26a5ea6feb83717646613495c71752439adfe0d (patch) | |
| tree | 7f842af33c2747d6a956c2bff9a20fadd1abb9d9 /usr.bin | |
| parent | 7b72489469e3f3c85aea40c34025dc70007ab82f (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/apply/apply.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/apply/apply.c b/usr.bin/apply/apply.c index 5499becd3055c..dfb738a3231dd 100644 --- a/usr.bin/apply/apply.c +++ b/usr.bin/apply/apply.c @@ -35,7 +35,11 @@ */ #ifndef lint +#if 0 static const char sccsid[] = "@(#)apply.c 8.4 (Berkeley) 4/4/94"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <sys/wait.h> @@ -152,7 +156,7 @@ main(argc, argv) * there's enough space to build it. */ for (l = strlen(cmd), i = 0; i < nargs; i++) - l += strlen(argv[i]); + l += strlen(argv[i+1]); if (l > clen && (c = realloc(c, clen = l)) == NULL) err(1, NULL); |
