The unified diff between revisions [2df88abf..] and [818e3621..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'commands.cc'

#
#
# patch "commands.cc"
#  from [16bc6ea6dbf37798359e4cf69e7db609667cf9de]
#    to [f815513f8a69b69bcf44822070d793895cdf9888]
#
============================================================
--- commands.cc	16bc6ea6dbf37798359e4cf69e7db609667cf9de
+++ commands.cc	f815513f8a69b69bcf44822070d793895cdf9888
@@ -873,19 +873,15 @@ describe_revision(project_t & project, r
   for (vector< revision<cert> >::const_iterator i = tmp.begin();
        i != tmp.end(); ++i)
     {
-      cert_value tv;
-      decode_base64(i->inner().value, tv);
       description += " ";
-      description += tv();
+      description += i->inner().value();
     }
   project.get_revision_certs_by_name(id, date_name, tmp);
   for (vector< revision<cert> >::const_iterator i = tmp.begin();
        i != tmp.end(); ++i)
     {
-      cert_value tv;
-      decode_base64(i->inner().value, tv);
       description += " ";
-      description += tv();
+      description += i->inner().value();
     }

   return description;