From: wesommer Date: Tue, 1 Sep 1987 16:24:01 +0000 (+0000) Subject: A list should be considered modified if its acl changes. X-Git-Tag: BETA5-24-88~77 X-Git-Url: http://andersk.mit.edu/gitweb/moira.git/commitdiff_plain/efb984bd54e682142cf72de67502b8c2b8ac17bb A list should be considered modified if its acl changes. --- diff --git a/server/qsupport.qc b/server/qsupport.qc index 3d8e43e6..cdc46b67 100644 --- a/server/qsupport.qc +++ b/server/qsupport.qc @@ -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))