Index: openacs-4/packages/acs-authentication/tcl/sync-procs.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/acs-authentication/tcl/sync-procs.tcl,v
diff -u -r1.13 -r1.14
--- openacs-4/packages/acs-authentication/tcl/sync-procs.tcl	16 Sep 2003 13:07:42 -0000	1.13
+++ openacs-4/packages/acs-authentication/tcl/sync-procs.tcl	17 Sep 2003 09:45:28 -0000	1.14
@@ -452,15 +452,13 @@
 
 ad_proc -private auth::sync::sweeper {} {
     db_foreach select_authorities {
-        select authority_id,
-               snapshot_p
+        select authority_id
         from   auth_authorities
         where  enabled_p = 't'
         and    batch_sync_enabled_p = 't'
     } {
         auth::authority::batch_sync \
-            -authority_id $authority_id \
-            -snapshot=[template::util::is_true $snapshot_p]
+            -authority_id $authority_id
     }
 }