]> git.sur5r.net Git - openldap/commitdiff
fix default sizelimit on pr (ITS#3085)
authorPierangelo Masarati <ando@openldap.org>
Thu, 15 Apr 2004 09:15:30 +0000 (09:15 +0000)
committerPierangelo Masarati <ando@openldap.org>
Thu, 15 Apr 2004 09:15:30 +0000 (09:15 +0000)
servers/slapd/config.c

index e0bc78ccc7451329e3451e044aa7b610e09f339e..9431160bd206a39631a38e79fb6bd99c74d67dee 100644 (file)
  */
 struct slap_limits_set deflimit = {
        SLAPD_DEFAULT_TIMELIMIT,        /* backward compatible limits */
-       0,
+       SLAPD_DEFAULT_TIMELIMIT,
 
        SLAPD_DEFAULT_SIZELIMIT,        /* backward compatible limits */
-       0,
+       SLAPD_DEFAULT_SIZELIMIT,
        -1,                             /* no limit on unchecked size */
        0,                              /* page limit */
        0,                              /* hide number of entries left */
-       0                               /* number of total entries returned by pagedResults equal to hard limit */
+       SLAPD_DEFAULT_SIZELIMIT         /* number of total entries returned by pagedResults equal to hard limit */
 };
 
 AccessControl  *global_acl = NULL;
@@ -843,7 +843,8 @@ read_config( const char *fname, int depth )
 #endif
                                                }
                                        }
-                                       lim->lms_s_hard = 0;
+                                       lim->lms_s_hard = lim->lms_s_soft;
+                                       lim->lms_s_pr_total = lim->lms_s_soft;
                                }
                        }
 
@@ -923,7 +924,7 @@ read_config( const char *fname, int depth )
 #endif
                                                }
                                        }
-                                       lim->lms_t_hard = 0;
+                                       lim->lms_t_hard = lim->lms_t_soft;
                                }
                        }