aboutsummaryrefslogtreecommitdiff
path: root/src/multistorage.cc
diff options
context:
space:
mode:
authorschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2005-06-14 21:09:16 +0000
committerschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2005-06-14 21:09:16 +0000
commitb4021f7a54d819f140bac092253db58a434e15fe (patch)
treea11493dde0056cbea6784318e40a8a143292c53b /src/multistorage.cc
parent1b516df1a9c5d9e963f08249c0e917ab15c0a356 (diff)
Also announce some PBS information.
Rebuild a thorn's tarball only if some of its ccl files change, not when any thorn's ccl files change. git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@41 83718e91-0e4f-0410-abf4-91180603181f
Diffstat (limited to 'src/multistorage.cc')
-rw-r--r--src/multistorage.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/multistorage.cc b/src/multistorage.cc
index 6b16c75..96bbcc7 100644
--- a/src/multistorage.cc
+++ b/src/multistorage.cc
@@ -94,6 +94,9 @@ namespace Formaline
store (char const * const key, char const * const value)
const
{
+ // Ignore null strings
+ if (value == 0) return;
+
for (list<storage *>::const_iterator it = stores.begin();
it != stores.end();
++ it)