]> andersk Git - moira.git/commitdiff
A list should be considered modified if its acl changes.
authorwesommer <wesommer>
Tue, 1 Sep 1987 16:24:01 +0000 (16:24 +0000)
committerwesommer <wesommer>
Tue, 1 Sep 1987 16:24:01 +0000 (16:24 +0000)
server/qsupport.qc

index 3d8e43e69bb0647f00fe8beb2b742861cf0adb03..cdc46b670d165e24f4cf0f157ca67d39bd0280fc 100644 (file)
@@ -6,10 +6,13 @@
  *     Copyright (C) 1987 by the Massachusetts Institute of Technology
  *
  *     $Log$
- *     Revision 1.12  1987-08-29 00:05:54  mike
- *     Fixed bug in check_nfs.
- *     Added code to upcasify machine names in validate_id.
+ *     Revision 1.13  1987-09-01 16:24:01  wesommer
+ *     A list should be considered modified if its acl changes.
  *
+Revision 1.12  87/08/29  00:05:54  mike
+Fixed bug in check_nfs.
+Added code to upcasify machine names in validate_id.
+
 Revision 1.11  87/08/28  14:55:45  mike
 Modified delete_locker to require only one argument, the login name.
 Modified get_groups_of_all_users and get_all_poboxes to disable INGRES
@@ -529,6 +532,7 @@ set_list_modtime_by_id(q, argv)
 
     list_id = *(int *)argv[0];
 ##  repeat replace list (modtime = "now") where list.#list_id = @list_id
+##  repeat replace list (modtime = "now") where list.#acl_id = @list_id
     return(SMS_SUCCESS);
 ##}
 
@@ -568,6 +572,7 @@ followup_amtl(q, argv)
     list_id = *(int *)argv[0];
 
 ##  repeat replace list (modtime = "now") where list.#list_id = @list_id
+##  repeat replace list (modtime = "now") where list.#acl_id = @list_id
 
     /* if query is not amtl or if member_type is not LIST then return */
     if (bcmp(q->shortname, "amtl", 4) || bcmp(argv[1], "LIST", 4)) 
This page took 0.158354 seconds and 5 git commands to generate.