monotone-commits-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Monotone-commits-diffs] net.venge.monotone: 5d65834513bf3fc273b5b7509a


From: code
Subject: [Monotone-commits-diffs] net.venge.monotone: 5d65834513bf3fc273b5b7509a155aa16f88e3bc
Date: Fri, 12 Nov 2010 22:23:47 GMT

revision:            5d65834513bf3fc273b5b7509a155aa16f88e3bc
date:                2010-11-12T22:23:35
author:              address@hidden
branch:              net.venge.monotone
changelog:
* gzip.hh: botan 1.9.9 introduced a new pure virtual function name()
  which our gzip (de)compressor filter lacked; this has been fixed
  (and this closes issue 104)
* NEWS: note the fix here

manifest:
format_version "1"

new_manifest [5819ce2c63e7cd22bbb210d4976788024a089690]

old_revision [2a114436ed3d76c16b2a73b2172c587d98bca464]

patch "NEWS"
 from [956b162258987f6fcc94a3fe26975a246874326c]
   to [72f972627320b7939ab9c6dcaccc844dafa7671f]

patch "gzip.hh"
 from [d8ba99ba959d68614258509a06a1c52d1ba7f023]
   to [649dfc0b250954f39c0f73870f8bec3f32f7fa43]
============================================================
--- NEWS	956b162258987f6fcc94a3fe26975a246874326c
+++ NEWS	72f972627320b7939ab9c6dcaccc844dafa7671f
@@ -1,3 +1,19 @@
+XXX XXX XX XX:XX:XX UTC 2010
+
+        1.0 release.
+
+        Changes
+
+        New Features
+
+        Bugs fixed
+
+        - add compatibility with Botan 1.9.9 and newer
+          (fixes monotone issue 104)
+
+        Internal
+
+
 Sun Oct 31 21:51:16 UTC 2010
 
         0.99.1 release.
============================================================
--- gzip.hh	d8ba99ba959d68614258509a06a1c52d1ba7f023
+++ gzip.hh	649dfc0b250954f39c0f73870f8bec3f32f7fa43
@@ -39,6 +39,7 @@ class Gzip_Compression : public Filter
       void write(const byte input[], u32bit length);
       void start_msg();
       void end_msg();
+      std::string name() const { return "Gzip_Compression"; }
 
       Gzip_Compression(u32bit = 1);
       ~Gzip_Compression();
@@ -62,6 +63,7 @@ class Gzip_Decompression : public Filter
       void write(const byte input[], u32bit length);
       void start_msg();
       void end_msg();
+      std::string name() const { return "Gzip_Decompression"; }
 
       Gzip_Decompression();
       ~Gzip_Decompression();

reply via email to

[Prev in Thread] Current Thread [Next in Thread]