From b364262c2eaf35eea8405454f53263cd494036f2 Mon Sep 17 00:00:00 2001 From: phk Date: Sun, 19 Sep 1999 08:36:37 +0000 Subject: Add a version number field to the jail(2) argument so that future changes can be handled intelligently. WARNING: you will need to reinstall #includes and recompile jail(8). --- usr.sbin/jail/jail.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'usr.sbin/jail') diff --git a/usr.sbin/jail/jail.c b/usr.sbin/jail/jail.c index 413ac54..fc34990 100644 --- a/usr.sbin/jail/jail.c +++ b/usr.sbin/jail/jail.c @@ -29,6 +29,8 @@ main(int argc, char **argv) i = chdir(argv[1]); if (i) err(1, "chdir %s", argv[1]); + memset(&j, 0, sizeof(j)); + j.version = 0; j.path = argv[1]; j.hostname = argv[2]; i = inet_aton(argv[3], &in); -- cgit v1.1