[haiku-commits] r42621 - haiku/trunk/src/kits/storage

  • From: axeld@xxxxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Thu, 11 Aug 2011 01:22:55 +0200 (CEST)

Author: axeld
Date: 2011-08-11 01:22:55 +0200 (Thu, 11 Aug 2011)
New Revision: 42621
Changeset: https://dev.haiku-os.org/changeset/42621

Modified:
   haiku/trunk/src/kits/storage/Node.cpp
Log:
* Fixed build; should have been part of r42620.


Modified: haiku/trunk/src/kits/storage/Node.cpp
===================================================================
--- haiku/trunk/src/kits/storage/Node.cpp       2011-08-10 21:08:00 UTC (rev 
42620)
+++ haiku/trunk/src/kits/storage/Node.cpp       2011-08-10 23:22:55 UTC (rev 
42621)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2002-2009, Haiku Inc.
+ * Copyright 2002-2011, Haiku Inc.
  * Distributed under the terms of the MIT License.
  *
  * Authors:
@@ -814,7 +814,7 @@
 BNode::InitAttrDir()
 {
        if (fCStatus == B_OK && fAttrFd < 0) {
-               fAttrFd = _kern_open_attr_dir(fFd, NULL);
+               fAttrFd = _kern_open_attr_dir(fFd, NULL, false);
                if (fAttrFd < 0)
                        return fAttrFd;
 


Other related posts:

  • » [haiku-commits] r42621 - haiku/trunk/src/kits/storage - axeld