diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-12-31 11:41:57 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-12-31 11:41:57 -0500 |
commit | 21678b3f280cd85961e3354faecc29aab4819de4 (patch) | |
tree | bd23d8cf5bd50193307b43173436dee92553e4cd /src/scriptcheck.sml | |
parent | c0b98201e7415eeada11e08c69264cf165bba50f (diff) |
Basis.serialize; separate file for mhash; run transactional finishers in reverse order; set needs_sig properly
Diffstat (limited to 'src/scriptcheck.sml')
-rw-r--r-- | src/scriptcheck.sml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/scriptcheck.sml b/src/scriptcheck.sml index 5cd056d5..7dec8d80 100644 --- a/src/scriptcheck.sml +++ b/src/scriptcheck.sml @@ -159,7 +159,7 @@ fun classify (ds, ps) = val foundBad = ref false - val ps = map (fn (ek, x, n, ts, t, _) => + val ps = map (fn (ek, x, n, ts, t, _, b) => (ek, x, n, ts, t, if IS.member (push_ids, n) then (if not (#persistent proto) andalso not (!foundBad) then @@ -172,7 +172,8 @@ fun classify (ds, ps) = else if IS.member (pull_ids, n) then ServerAndPull else - ServerOnly)) ps + ServerOnly, + b)) ps in (ds, ps) end |