From: Joao Eduardo Luis Date: Tue, 6 Aug 2013 21:50:09 +0000 (-0700) Subject: mon: AuthMonitor: fix some >80 columns debug strings X-Git-Tag: v0.68~67^2~7 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0380475b9544f4797b45b8bcf9817d285731158f;p=ceph.git mon: AuthMonitor: fix some >80 columns debug strings Give AuthMonitor a new look. She sure deserves it. Signed-off-by: Joao Eduardo Luis --- diff --git a/src/mon/AuthMonitor.cc b/src/mon/AuthMonitor.cc index ebb5194b05ab2..9f8855894425b 100644 --- a/src/mon/AuthMonitor.cc +++ b/src/mon/AuthMonitor.cc @@ -393,13 +393,19 @@ bool AuthMonitor::prep_auth(MAuth *m, bool paxos_writable) entity_name.get_type() == CEPH_ENTITY_TYPE_MDS) { if (g_conf->cephx_cluster_require_signatures || g_conf->cephx_require_signatures) { - dout(1) << m->get_source_inst() << " supports cephx but not signatures and 'cephx [cluster] require signatures = true'; disallowing cephx" << dendl; + dout(1) << m->get_source_inst() + << " supports cephx but not signatures and" + << " 'cephx [cluster] require signatures = true';" + << " disallowing cephx" << dendl; supported.erase(CEPH_AUTH_CEPHX); } } else { if (g_conf->cephx_service_require_signatures || g_conf->cephx_require_signatures) { - dout(1) << m->get_source_inst() << " supports cephx but not signatures and 'cephx [service] require signatures = true'; disallowing cephx" << dendl; + dout(1) << m->get_source_inst() + << " supports cephx but not signatures and" + << " 'cephx [service] require signatures = true';" + << " disallowing cephx" << dendl; supported.erase(CEPH_AUTH_CEPHX); } }