Displaying 4 results from an estimated 4 matches for "shm_ds".
Did you mean:
sem_ds
1999 Aug 06
2
Solaris 7 5/99 and samba-2.0.5a (PR#19508)
...if (sem_ds.sem_perm.cuid != 0 || sem_ds.sem_perm.cgid !=
root_gid) {
DEBUG(0,("ERROR: root did not create the semaphore\n"));
return NULL;
}
@@ -684,7 +687,7 @@
}
if (!read_only) {
- if (shm_ds.shm_perm.cuid != 0 || shm_ds.shm_perm.cgid != 0) {
+ if (shm_ds.shm_perm.cuid != 0 || shm_ds.shm_perm.cgid !=
root_gid) {
DEBUG(0,("ERROR: root did not create the shmem\n"));
global_unlock();
return NULL...
1999 Aug 14
1
HPUX shared memory creates error (PR#19573)
...erm.cgid != 0))) {
+ DEBUG(0,("ERROR: root did not create the semaphore: semgid=%d, rootgid=%d\n", sem_ds.sem_perm.cgid, root_gid));
return NULL;
}
@@ -684,7 +686,7 @@
}
if (!read_only) {
- if (shm_ds.shm_perm.cuid != 0 || shm_ds.shm_perm.cgid != 0) {
+ if (shm_ds.shm_perm.cuid != 0 || ((shm_ds.shm_perm.cgid != root_gid) && (shm_ds.shm_perm.cgid != 0))) {
DEBUG(0,("ERROR: root did not create the shmem\n"));
global_un...
1999 Oct 23
3
semaphores and Solaris 7 8/99
I just installed the 8/99 release of Solaris 7 on three Sun Ultra 10's and
it seems to have broken Samba. I am running Samba 2.0.5a and it works fine
on an Ultra 10 running the 5/99 release of Solaris 7. All of the Ultra 10's
are using the 64 bit kernel. This is the errors that I am getting.
[1999/10/22 21:09:56, 0] locking/shmem_sysv.c:sysv_shm_open(597)
ERROR: root did not create the
2002 Aug 05
1
Problems compiling on QNX
...rying to compile samba 2.2.5 on QNX RTOS 6.2.0 x86pc. I am getting the following error.
Compiling printing/print_generic.c
Compiling printing/lpq_parse.c
Compiling printing/load.c
Compiling profile/profile.c
profile/profile.c: In function `profile_setup':
profile/profile.c:93: storage size of `shm_ds' isn't known
profile/profile.c:117: `SHM_RDONLY' undeclared (first use in this function)
profile/profile.c:117: (Each undeclared identifier is reported only once
profile/profile.c:117: for each function it appears in.)
make: *** [profile/profile.o] Error 1
I did ./configure, it worked...