diff options
author | ru <ru@FreeBSD.org> | 2011-05-06 14:21:46 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2011-05-06 14:21:46 +0000 |
commit | f56d17ac15c534a36a56fcb317305feeae0db736 (patch) | |
tree | 46848203cda80ec706000ecbd8715be9713766de /contrib/one-true-awk/main.c | |
parent | 777b49b2a5db1e7cb185190154fb1e8a52f0061e (diff) | |
download | FreeBSD-src-f56d17ac15c534a36a56fcb317305feeae0db736.zip FreeBSD-src-f56d17ac15c534a36a56fcb317305feeae0db736.tar.gz |
Update to a 6-May-2011 release (upstreamed some of our changes).
Diffstat (limited to 'contrib/one-true-awk/main.c')
-rw-r--r-- | contrib/one-true-awk/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/one-true-awk/main.c b/contrib/one-true-awk/main.c index 27a49e4..b40a39d 100644 --- a/contrib/one-true-awk/main.c +++ b/contrib/one-true-awk/main.c @@ -25,7 +25,7 @@ THIS SOFTWARE. #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); -const char *version = "version 20110501 (FreeBSD)"; +const char *version = "version 20110506 (FreeBSD)"; #define DEBUG #include <stdio.h> @@ -95,7 +95,7 @@ int main(int argc, char *argv[]) safe = 1; break; case 'f': /* next argument is program filename */ - if (argv[1][2] != 0) { /* arg is -fsomething */ + if (argv[1][2] != 0) { /* arg is -fsomething */ if (npfile >= MAX_PFILE - 1) FATAL("too many -f options"); pfile[npfile++] = &argv[1][2]; |