diff options
author | Bertram <bertram@cegetel.net> | 2009-08-03 16:59:07 +0200 |
---|---|---|
committer | Bertram <bertram@cegetel.net> | 2009-08-03 16:59:07 +0200 |
commit | 555beaa47612e10adfa0c181c5eafc83c4317c48 (patch) | |
tree | f5f5eb8cc705b6c20e13a3882e65941bd260d733 /src/properties.h | |
parent | c0c41459a49ccb1c1a169aaf6b665bc80f3eb99e (diff) | |
download | mana-client-555beaa47612e10adfa0c181c5eafc83c4317c48.tar.gz mana-client-555beaa47612e10adfa0c181c5eafc83c4317c48.tar.bz2 mana-client-555beaa47612e10adfa0c181c5eafc83c4317c48.tar.xz mana-client-555beaa47612e10adfa0c181c5eafc83c4317c48.zip |
Code little reliability fix.
Diffstat (limited to 'src/properties.h')
-rw-r--r-- | src/properties.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/properties.h b/src/properties.h index 75335377..e7aab157 100644 --- a/src/properties.h +++ b/src/properties.h @@ -89,6 +89,8 @@ class Properties { if (i->second == "true") ret = true; + if (i->second == "false") + ret = false; } return ret; } |