blob: 665e6637600853346bf0032f9c487a29132375b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-ae,v 1.1.1.1 2002/07/29 04:19:00 jlam Exp $
--- profile/profile.c.orig Sat Feb 2 19:46:49 2002
+++ profile/profile.c
@@ -22,7 +22,7 @@
#include "includes.h"
-#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;
|