[Ocfs2-commits] mfasheh commits r1352 - trunk/src

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Thu Aug 12 16:20:30 CDT 2004


Author: mfasheh
Date: 2004-08-12 15:20:28 -0500 (Thu, 12 Aug 2004)
New Revision: 1352

Modified:
   trunk/src/file.c
Log:
* fix a bug with the 2.6 code introduced in the previous revision.



Modified: trunk/src/file.c
===================================================================
--- trunk/src/file.c	2004-08-12 19:39:10 UTC (rev 1351)
+++ trunk/src/file.c	2004-08-12 20:20:28 UTC (rev 1352)
@@ -115,7 +115,7 @@
 static void ocfs_unblock_sigs(sigset_t newsig)
 {
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
-	sigprocmask(SIG_SETMASK, newsig, NULL);
+	sigprocmask(SIG_SETMASK, &newsig, NULL);
 #else
 #ifdef HAVE_NPTL
        	spin_lock_irq (&current->sighand->siglock);



More information about the Ocfs2-commits mailing list