[OpenAFS-devel] SGI version once more

Pavel Semerad semerad@ss1000.ms.mff.cuni.cz
Fri, 2 Feb 2001 10:25:17 +0100 (CET)


Hi,
there was error in my last post (SGI patch). One ifdef was incorrect. Here
is correction:

--- afs/afs_call.c      2001/02/01 18:44:38     1.10
+++ afs/afs_call.c      2001/02/02 09:19:46
@@ -641,7 +641,7 @@
                AFS_GUNLOCK();
                break;
 
-#if !defined(AFS_SGI_ENV) && !defined(AFS_SGI_EFS_IOPS_ENV)
+#if !defined(AFS_SGI_ENV) || defined(AFS_SGI_EFS_IOPS_ENV)
            case AFSCALL_ICREATE:
                rval1 = afs_syscall_icreate(p1, p2, p3, p4, p5, p6);
                break;


Pavel Semerad