blob: 2b2cecd146a41838f74848fa561dc71a7dd21ae8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-ac,v 1.11 2002/10/18 11:50:28 martti Exp $
--- profile/profile.c.orig Wed Oct 9 22:27:22 2002
+++ profile/profile.c Fri Oct 18 13:02:32 2002
@@ -23,7 +23,7 @@
#include "includes.h"
#ifdef WITH_PROFILE
-#define IPC_PERMS ((SHM_R | SHM_W) | (SHM_R>>3) | (SHM_R>>6))
+#define IPC_PERMS ((S_IRUSR | S_IWUSR) | S_IRGRP | S_IROTH)
static int shm_id;
static BOOL read_only;
|