blob: 4f20421c0db18828ab778a24a913a64f53f33031 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-ac,v 1.10 2002/02/04 08:09:03 martti Exp $
--- profile/profile.c.orig Sun Feb 3 01:46:49 2002
+++ profile/profile.c Mon Feb 4 08:32:16 2002
@@ -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;
|