From: Dan Mick Date: Tue, 18 Jun 2013 22:44:04 +0000 (-0700) Subject: AuthMonitor: auth export's status message to ss, not ds X-Git-Tag: v0.65~36 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=257490335ad59662d2e25eae9f61d8adcd958e9c;p=ceph.git AuthMonitor: auth export's status message to ss, not ds This puts it on stderr, not stdout Signed-off-by: Dan Mick --- diff --git a/src/mon/AuthMonitor.cc b/src/mon/AuthMonitor.cc index e4e0dacd8ba9..a244f7c55670 100644 --- a/src/mon/AuthMonitor.cc +++ b/src/mon/AuthMonitor.cc @@ -578,7 +578,7 @@ bool AuthMonitor::preprocess_command(MMonCommand *m) KeyRing kr; kr.add(entity, eauth); kr.encode_plaintext(rdata); - ds << "export " << eauth; + ss << "export " << eauth; r = 0; } else { ss << "no key for " << eauth;