1994-12-04 20:12:26 +00:00
|
|
|
/*
|
2001-03-09 20:09:28 +00:00
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
|
|
* <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you
|
|
|
|
* 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
|
|
|
|
* ----------------------------------------------------------------------------
|
1994-12-04 20:12:26 +00:00
|
|
|
*/
|
|
|
|
|
2001-03-14 19:39:29 +00:00
|
|
|
#ifndef lint
|
|
|
|
static const char rcsid[] =
|
|
|
|
"$FreeBSD$";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
1997-10-27 07:55:31 +00:00
|
|
|
#include <stdio.h>
|
2001-06-24 20:25:23 +00:00
|
|
|
#include <stdlib.h>
|
1995-03-11 09:33:25 +00:00
|
|
|
|
1997-10-27 07:55:31 +00:00
|
|
|
int
|
2001-03-09 20:09:28 +00:00
|
|
|
main(int argc, char **argv)
|
1994-12-04 20:12:26 +00:00
|
|
|
{
|
|
|
|
|
2001-03-09 20:09:28 +00:00
|
|
|
fprintf(stderr, "ERROR: vnconfig(8) has been discontinued\n");
|
2001-03-14 19:39:29 +00:00
|
|
|
fprintf(stderr, "\tPlease use mdconfig(8).\n");
|
2001-03-09 20:09:28 +00:00
|
|
|
exit (1);
|
1999-03-14 09:20:01 +00:00
|
|
|
}
|