summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2015-01-20 18:03:18 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2015-01-20 18:03:18 +0000
commitf2b8b343f983c184986d12a8d6e2f6a4e579a4fb (patch)
treeaec6b3108eb0509593d78b2459ddaab635469c90
parentee84f1cbaf28a0c8511dd2de2685028d389414b2 (diff)
CMASK was only a CSRGism. It was only used in the kernel and ftpd, once
each, never in portable software. Mop it up. ok guenther, tested in ports tree by sthen
-rw-r--r--sys/sys/param.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/sys/param.h b/sys/sys/param.h
index 6c43583b53b..45a0620fc4e 100644
--- a/sys/sys/param.h
+++ b/sys/sys/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.111 2015/01/18 21:47:16 millert Exp $ */
+/* $OpenBSD: param.h,v 1.112 2015/01/20 18:03:17 deraadt Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@@ -120,8 +120,6 @@
#define NODEV (dev_t)(-1) /* non-existent device */
-#define CMASK 022 /* default file mask: S_IWGRP|S_IWOTH */
-
/*
* Constants related to network buffer management.
* MCLBYTES must be no larger than PAGE_SIZE (the software page size) and,