diff options
author | charnier <charnier@FreeBSD.org> | 2001-03-14 19:39:29 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 2001-03-14 19:39:29 +0000 |
commit | fc1bb300608269c06d54be2ba82309a451ef387a (patch) | |
tree | 1f55fd4b2a0159a0cae8f3a532223649f0e2c25c /usr.sbin/vnconfig | |
parent | 1ffbfa26345fd9284db007be2a6731154e59c3dd (diff) | |
download | FreeBSD-src-fc1bb300608269c06d54be2ba82309a451ef387a.zip FreeBSD-src-fc1bb300608269c06d54be2ba82309a451ef387a.tar.gz |
Typo. Move FreeBSD Id out of copyright section.
Diffstat (limited to 'usr.sbin/vnconfig')
-rw-r--r-- | usr.sbin/vnconfig/vnconfig.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.sbin/vnconfig/vnconfig.c b/usr.sbin/vnconfig/vnconfig.c index 395c106..fb976ae 100644 --- a/usr.sbin/vnconfig/vnconfig.c +++ b/usr.sbin/vnconfig/vnconfig.c @@ -5,11 +5,13 @@ * can do whatever you want with this stuff. If we meet some day, and you think * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- - * - * $FreeBSD$ - * */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif /* not lint */ + #include <stdio.h> int @@ -17,6 +19,6 @@ main(int argc, char **argv) { fprintf(stderr, "ERROR: vnconfig(8) has been discontinued\n"); - fprintf(stderr, "\tPlease used mdconfig(8).\n"); + fprintf(stderr, "\tPlease use mdconfig(8).\n"); exit (1); } |