From 0672c11278edfaf71d4fd3d4f50a08abea817011 Mon Sep 17 00:00:00 2001 From: dsmith Date: Mon, 11 Dec 2006 20:31:53 +0000 Subject: 2006-12-11 David Smith * hash.cxx (find_hash): Fixed a caching bug. Bulk mode (relayfs) status should be figured into the hash since it changes the generated C code. --- hash.cxx | 1 + 1 file changed, 1 insertion(+) (limited to 'hash.cxx') diff --git a/hash.cxx b/hash.cxx index 26a8ee6f..3c552f2d 100644 --- a/hash.cxx +++ b/hash.cxx @@ -94,6 +94,7 @@ find_hash (systemtap_session& s, const string& script) h.add(s.architecture); // Hash user-specified arguments (that change the generated module). + h.add(s.bulk_mode); for (unsigned i = 0; i < s.macros.size(); i++) h.add(s.macros[i]); -- cgit