You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2010/02/09 23:58:41 UTC

svn commit: r908269 - /incubator/trafficserver/traffic/trunk/proxy/mgmt2/MgmtDBM.cc

Author: zwoop
Date: Tue Feb  9 22:58:40 2010
New Revision: 908269

URL: http://svn.apache.org/viewvc?rev=908269&view=rev
Log:
TS-128: Fix build issues on RHEL4.

Modified:
    incubator/trafficserver/traffic/trunk/proxy/mgmt2/MgmtDBM.cc

Modified: incubator/trafficserver/traffic/trunk/proxy/mgmt2/MgmtDBM.cc
URL: http://svn.apache.org/viewvc/incubator/trafficserver/traffic/trunk/proxy/mgmt2/MgmtDBM.cc?rev=908269&r1=908268&r2=908269&view=diff
==============================================================================
--- incubator/trafficserver/traffic/trunk/proxy/mgmt2/MgmtDBM.cc (original)
+++ incubator/trafficserver/traffic/trunk/proxy/mgmt2/MgmtDBM.cc Tue Feb  9 22:58:40 2010
@@ -119,7 +119,7 @@
     // we have the semaphore, reset the failure count
     g_semop_failures = 0;
 
-    if (open(db_file, NULL) || lock(true)) {
+    if (open(db_file, 0, NULL) || lock(true)) {
       mgmt_fatal(stderr, "[MgmtDBM::mgmt_batch_open] dbm op failed\n");
     }
     opened = true;