summaryrefslogtreecommitdiffstats
path: root/sbin/disklabel/editor.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2009-04-10 21:16:51 +0000
committerderaadt <deraadt@openbsd.org>2009-04-10 21:16:51 +0000
commitf9a860adfebfc8a47590fbc78a2194ee2cb27999 (patch)
tree365be9796e5beea00d2de88e208d1395052dcd15 /sbin/disklabel/editor.c
parentIf the md_prep_disklabel routine sets AUTOROOT=y, then don't ask the (diff)
downloadwireguard-openbsd-f9a860adfebfc8a47590fbc78a2194ee2cb27999.tar.xz
wireguard-openbsd-f9a860adfebfc8a47590fbc78a2194ee2cb27999.zip
allow /usr/local to be up to 5MB in auto mode; ok krw
Diffstat (limited to 'sbin/disklabel/editor.c')
-rw-r--r--sbin/disklabel/editor.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c
index b5a996b0c13..68b6b16413e 100644
--- a/sbin/disklabel/editor.c
+++ b/sbin/disklabel/editor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: editor.c,v 1.187 2009/04/10 20:54:08 krw Exp $ */
+/* $OpenBSD: editor.c,v 1.188 2009/04/10 21:16:51 deraadt Exp $ */
/*
* Copyright (c) 1997-2000 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -17,7 +17,7 @@
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: editor.c,v 1.187 2009/04/10 20:54:08 krw Exp $";
+static char rcsid[] = "$OpenBSD: editor.c,v 1.188 2009/04/10 21:16:51 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -79,7 +79,7 @@ struct space_allocation alloc[] = {
{ MEG(80), MEG(4096), 10, "/var" },
{ MEG(2048), MEG(10240), 20, "/usr" },
{ MEG(512), MEG(1024), 5, "/usr/X11R6" },
- { MEG(2048), MEG(3072), 5, "/usr/local" },
+ { MEG(2048), MEG(5120), 5, "/usr/local" },
{ MEG(1024), MEG(2048), 5, "/usr/src" },
{ MEG(2048), MEG(2048), 0, "/usr/obj" },
{ MEG(512), MEG(1024*1024), 35, "/home" }