浏览代码

Fix for ticket 465: cn=monitor showing stats for other db instances

Check that part of the db file name that matches is the full db dir name
Ludwig Krispenz 13 年之前
父节点
当前提交
2f1021c825
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      ldap/servers/slapd/back-ldbm/monitor.c

+ 2 - 0
ldap/servers/slapd/back-ldbm/monitor.c

@@ -196,6 +196,8 @@ int ldbm_back_monitor_instance_search(Slapi_PBlock *pb, Slapi_Entry *e,
         if (strncmp(mpfstat[i]->file_name, inst->inst_dir_name,
                     strlen(inst->inst_dir_name)) != 0)
             continue;
+        if (mpfstat[i]->file_name[strlen(inst->inst_dir_name)] != get_sep(mpfstat[i]->file_name))
+            continue;
 
 	/* Since the filenames are now relative, we need to construct an absolute version
 	 * for the purpose of stat() etc below...