From 8d425bfde2c0af68087f5784ac994ac5d316a375 Mon Sep 17 00:00:00 2001 From: jamie Date: Fri, 17 Jun 2011 16:21:03 +0000 Subject: Update copyright dates and other whitespacey stuff. --- usr.sbin/jail/command.c | 2 +- usr.sbin/jail/config.c | 2 +- usr.sbin/jail/jail.8 | 2 +- usr.sbin/jail/jail.c | 16 ++++++++-------- usr.sbin/jail/jail.conf.5 | 2 +- usr.sbin/jail/jaillex.l | 2 +- usr.sbin/jail/jailp.h | 2 +- usr.sbin/jail/jailparse.y | 2 +- usr.sbin/jail/state.c | 2 +- 9 files changed, 16 insertions(+), 16 deletions(-) (limited to 'usr.sbin') diff --git a/usr.sbin/jail/command.c b/usr.sbin/jail/command.c index ce90797..d79f4f9 100644 --- a/usr.sbin/jail/command.c +++ b/usr.sbin/jail/command.c @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2010 James Gritton + * Copyright (c) 2011 James Gritton * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/usr.sbin/jail/config.c b/usr.sbin/jail/config.c index 850f632..3102448 100644 --- a/usr.sbin/jail/config.c +++ b/usr.sbin/jail/config.c @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2010 James Gritton + * Copyright (c) 2011 James Gritton * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/usr.sbin/jail/jail.8 b/usr.sbin/jail/jail.8 index ab66c6f..678eebb 100644 --- a/usr.sbin/jail/jail.8 +++ b/usr.sbin/jail/jail.8 @@ -1,5 +1,5 @@ .\" Copyright (c) 2000, 2003 Robert N. M. Watson -.\" Copyright (c) 2008, 2010 James Gritton +.\" Copyright (c) 2008-2011 James Gritton .\" All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without diff --git a/usr.sbin/jail/jail.c b/usr.sbin/jail/jail.c index 9f16a57..ff1349e 100644 --- a/usr.sbin/jail/jail.c +++ b/usr.sbin/jail/jail.c @@ -1,6 +1,6 @@ /*- * Copyright (c) 1999 Poul-Henning Kamp. - * Copyright (c) 2009-2010 James Gritton + * Copyright (c) 2009-2011 James Gritton * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -70,12 +70,12 @@ static void quoted_print(FILE *fp, char *str); static void usage(void); static struct permspec perm_sysctl[] = { - { "security.jail.set_hostname_allowed", KP_ALLOW_SET_HOSTNAME, 0 }, - { "security.jail.sysvipc_allowed", KP_ALLOW_SYSVIPC, 0 }, - { "security.jail.allow_raw_sockets", KP_ALLOW_RAW_SOCKETS, 0 }, - { "security.jail.chflags_allowed", KP_ALLOW_CHFLAGS, 0 }, - { "security.jail.mount_allowed", KP_ALLOW_MOUNT, 0 }, - { "security.jail.socket_unixiproute_only", KP_ALLOW_SOCKET_AF, 1 }, + { "security.jail.set_hostname_allowed", KP_ALLOW_SET_HOSTNAME, 0 }, + { "security.jail.sysvipc_allowed", KP_ALLOW_SYSVIPC, 0 }, + { "security.jail.allow_raw_sockets", KP_ALLOW_RAW_SOCKETS, 0 }, + { "security.jail.chflags_allowed", KP_ALLOW_CHFLAGS, 0 }, + { "security.jail.mount_allowed", KP_ALLOW_MOUNT, 0 }, + { "security.jail.socket_unixiproute_only", KP_ALLOW_SOCKET_AF, 1 }, }; static const enum intparam startcommands[] = { @@ -423,7 +423,7 @@ main(int argc, char **argv) if (j->jid < 0 && !(j->flags & JF_DEPEND)) { warnx("\"%s\" not found", j->name); failed(j); - continue;; + continue; } if (dep_check(j)) continue; diff --git a/usr.sbin/jail/jail.conf.5 b/usr.sbin/jail/jail.conf.5 index b09d3fe..1954b05 100644 --- a/usr.sbin/jail/jail.conf.5 +++ b/usr.sbin/jail/jail.conf.5 @@ -1,4 +1,4 @@ -.\" Copyright (c) 2010 James Gritton +.\" Copyright (c) 2011 James Gritton .\" All rights reserved. .\" .\" Redistribution and use in source and binary forms, with or without diff --git a/usr.sbin/jail/jaillex.l b/usr.sbin/jail/jaillex.l index 93bd7c4..157db92 100644 --- a/usr.sbin/jail/jaillex.l +++ b/usr.sbin/jail/jaillex.l @@ -1,6 +1,6 @@ %{ /*- - * Copyright (c) 2010 James Gritton + * Copyright (c) 2011 James Gritton * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/usr.sbin/jail/jailp.h b/usr.sbin/jail/jailp.h index d712921..204cebe 100644 --- a/usr.sbin/jail/jailp.h +++ b/usr.sbin/jail/jailp.h @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2010 James Gritton. + * Copyright (c) 2011 James Gritton. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/usr.sbin/jail/jailparse.y b/usr.sbin/jail/jailparse.y index 8af662c..2df337f 100644 --- a/usr.sbin/jail/jailparse.y +++ b/usr.sbin/jail/jailparse.y @@ -1,6 +1,6 @@ %{ /*- - * Copyright (c) 2010 James Gritton + * Copyright (c) 2011 James Gritton * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/usr.sbin/jail/state.c b/usr.sbin/jail/state.c index 3712f04..680a2ff 100644 --- a/usr.sbin/jail/state.c +++ b/usr.sbin/jail/state.c @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2010 James Gritton + * Copyright (c) 2011 James Gritton * All rights reserved. * * Redistribution and use in source and binary forms, with or without -- cgit v1.1