From ce3358bdf8e2d4c458d7f46cab06531bf6569ee2 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Wed, 8 Jan 2014 11:03:45 -0800 Subject: [PATCH] Improve diagnostics for ResourceManager --- src/ripple/resource/impl/Entry.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ripple/resource/impl/Entry.h b/src/ripple/resource/impl/Entry.h index 35b3d0beb..3cb5210fb 100644 --- a/src/ripple/resource/impl/Entry.h +++ b/src/ripple/resource/impl/Entry.h @@ -44,7 +44,7 @@ struct Entry : public List ::Node { case kindInbound: return key->address.to_string(); case kindOutbound: return key->address.to_string(); - case kindAdmin: return key->name; + case kindAdmin: return std::string ("\"") + key->name + "\""; default: bassertfalse; }