]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
STABLE10-linux24-ppc-has-no-setgroups32-20010423
authorChas Williams <chas@cmf.nrl.navy.mil>
Mon, 23 Apr 2001 08:46:07 +0000 (08:46 +0000)
committerDerrick Brashear <shadow@dementia.org>
Mon, 23 Apr 2001 08:46:07 +0000 (08:46 +0000)
ppc doesn't yet have setgroups32

src/afs/LINUX/osi_module.c

index e2652e2d4eadc220cabaabb41bc82edbc3817ab3..608012740172bd0d81aa063eb03b852de146c8b5 100644 (file)
@@ -135,7 +135,7 @@ int init_module(void)
     sys_setgroupsp32 = SYSCALL2POINTER sys_call_table32[__NR_setgroups];
     sys_call_table32[__NR_setgroups] = POINTER2SYSCALL afs_xsetgroups32;
 #endif
-#if defined(AFS_LINUX24_ENV)
+#if defined(__NR_setgroups32)
     sys_setgroups32p = SYSCALL2POINTER sys_call_table[__NR_setgroups32];
     sys_call_table[__NR_setgroups32] = POINTER2SYSCALL afs_xsetgroups32;
 #endif
@@ -153,7 +153,7 @@ void cleanup_module(void)
     sys_call_table32[__NR_setgroups] = POINTER2SYSCALL sys_setgroupsp32;
     sys_call_table32[__NR_afs_syscall] = afs_ni_syscall32;
 #endif
-#if defined(AFS_LINUX24_ENV)
+#if defined(__NR_setgroups32)
     sys_call_table[__NR_setgroups32] = POINTER2SYSCALL sys_setgroups32p;
 #endif
     unregister_filesystem(&afs_file_system);