pkgsrc/net/ja-samba/patches/patch-ai
taca e4050b2e02 Update ja-samba package to ja-samba-2.2.7.1.1.1 (samba 2.2.7a-1.1).
This contains security problem solved by samba 2.2.8.

pkgsrc changes:

o pkgsrc organization changesd as samba package.
o note explicitly security problem fixed by samba 2.2.8.
o remove own quota support patch.

Changes from ja-samba-2.2.4.1.0 package:


              Changelog of Samba2.2 Japanese Edition

                                                    Samba Users Group Japan

   Here is the fix list of Samba2.2 Japanese Edition.
   The sign of each line means:

   *: Fix of Samba Japanese Edition only
   x: Fix of sending a patch to Samba Team
   c: Fix of being commited a patch by Samba Team

samba-2.2.7a-ja-1.1
~~~~~~~~~~~~~~~~~~~
   Changes to the original version
      c Fixed two security problems which is fixed at samba 2.2.8
                                                          [sugj-tech:5211]

samba-2.2.7a-ja-1.0beta1
~~~~~~~~~~~~~~~~~~~~~~~
   Changes to the internationalized version
      * Fixed build problem when gettext 0.11.x installed [sugj-tech:5177]
      * Fixed memory leak of winbindd                     [sugj-tech:5152]
      * Added 'ldap referrals' parameter                  [sugj-tech:5124]
      * Fixed parameter of 'printing' was set on FreeBSD  [sugj-tech:5155]
      * Fixed reseting parameters of smbd and nmbd by SIGHUP
                                                          [sugj-tech:5160]
      * Fixed setting change of the 'printing' parameter works together
        with print-related parameters                     [sugj-tech:5155]
      * Fixed error message when old getgroups() is used  [sugj-tech:5166]
      * Fixed warning message when leap second is set     [sugj-tech:5166]
      * Fixed altname command of smbclient                [sugj-tech:5019]
      * Fixed close share command of smbcontrol with Japanese
                                                          [sugj-tech:5014]
      * Fixed compile problem on Tru64 UNIX               [sugj-tech:5033]
      * Fixed compile problem of tdb directory            [sugj-tech:5033]
      * Fixed to enable domain logon to Japanese domain name
                                                          [sugj-tech:5043]
      * Fixed smbspool command with Japanese              [sugj-tech:5048,5112]
      * Fixed recycle.c of VFS module                     [samba-jp:13590]
      * Fixed memory allocation of make_printerdef        [sugj-tech:5106]
      * Fixed compile problem before FreeBSD 2.2.8        [sugj-tech:5112]
      * Fixed querydispinfo command of rpcclient          [sugj-tech:5112]
      * Fixed rpcclient for Japanese resource             [sugj-tech:5112]
      * Changed option of client tools from '-t' to '-T'  [sugj-tech:5077]
      * Update smbchartool and removed jcode.pl           [sugj-tech:5091]
      * Fixed encoding when using euc3 coding system      [sugj-tech:5122]

samba-2.2.5-ja-1.0beta3
~~~~~~~~~~~~~~~~~~~~~~~
   Changes to the internationalized version
      * Added %j macro which means printing job name       [sugj-tech:4998]

   Changes to the original version
      * Fixed counting characters of unistr_to_dos()       [sugj-tech:5004]
      * Fixed compile problem with --with-quotas on NetBSD [sugj-tech:4965]
2003-03-29 08:18:44 +00:00

13 lines
375 B
Text

$NetBSD: patch-ai,v 1.3 2003/03/29 08:18:49 taca Exp $
--- profile/profile.c.orig 2002-11-21 21:23:08.000000000 +0900
+++ profile/profile.c
@@ -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;