From c89d9bbcef6aaa59522e1338cd05ff3f2d567c71 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 1 Feb 2010 13:34:09 -0800 Subject: [PATCH] mon: fix auth restart decoding --- src/mon/AuthMonitor.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mon/AuthMonitor.cc b/src/mon/AuthMonitor.cc index e1f7247b3576a..e1821dd69d5e7 100644 --- a/src/mon/AuthMonitor.cc +++ b/src/mon/AuthMonitor.cc @@ -247,6 +247,8 @@ void AuthMonitor::init() if (v) { dout(0) << "AuthMonitor::init() startup: loading summary e" << v << dendl; bufferlist::iterator p = latest.begin(); + __u8 v; + ::decode(v, p); ::decode(max_global_id, p); ::decode(mon->key_server, p); } -- 2.39.5