Author: yamakenz
Date: Wed Sep 19 06:12:23 2007
New Revision: 4979

Modified:
   trunk/scm/custom-rt.scm

Log:
* scm/custom-rt.scm
  - (require-custom): Fix unexpected file-mtime use even if
    custom-enable-mtime-aware-user-conf-reloading? is #f. Thanks
    Etsushi for the report


Modified: trunk/scm/custom-rt.scm
==============================================================================
--- trunk/scm/custom-rt.scm     (original)
+++ trunk/scm/custom-rt.scm     Wed Sep 19 06:12:23 2007
@@ -122,7 +122,8 @@
                 (not (setugid?)))
            (for-each (lambda (gsym)
                        (custom-load-group-conf gsym)
-                       (custom-update-group-conf-freshness gsym))
+                       (if custom-enable-mtime-aware-user-conf-reloading?
+                           (custom-update-group-conf-freshness gsym)))
                      (reverse new-groups)))))))
 
 ;; full implementation

Reply via email to