src/core/config.cc
changeset 2570 15d5421022a1
parent 2569 d5cff2968984
child 2586 50d78910a997
--- a/src/core/config.cc	Fri Mar 07 12:18:34 2008 -0800
+++ b/src/core/config.cc	Sun Mar 09 21:07:14 2008 +0100
@@ -409,10 +409,18 @@
 {
   AttributeList::GetGlobal ()->Set (name, value);
 }
+bool SetDefaultFailSafe (std::string name, Attribute value)
+{
+  return AttributeList::GetGlobal ()->SetFailSafe (name, value);
+}
 void SetGlobal (std::string name, Attribute value)
 {
   GlobalValue::Bind (name, value);
 }
+bool SetGlobalFailSafe (std::string name, Attribute value)
+{
+  return GlobalValue::BindFailSafe (name, value);
+}
 void Connect (std::string path, const CallbackBase &cb)
 {
   Singleton<ConfigImpl>::Get ()->Connect (path, cb);