Package: cdbfasta / 0.99-20100722-3

workaround-lintian-false-positive Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Lintian uses some string detection heuristics to spot statically linked Zlib
# and this string triggers the warning.  This change keeps Lintian happy and makes
# the error message gramatically correct.
--- a/gcdbz.cpp
+++ b/gcdbz.cpp
@@ -65,7 +65,7 @@
  err = deflate(&zstream, Z_FULL_FLUSH);
  zsize=zstream.total_out-t_out;
  if ((err !=Z_OK && err!=Z_STREAM_END) || zsize<=0)
-       GError("GCdbz error: deflate 1st record failed! (err=%d)\n", err);
+       GError("GCdbz error: deflating 1st record failed! (err=%d)\n", err);
  //now write the header and the dummy record
      //in case this was not done before:
  gcvt_uint=(endian_test())? &uint32_sun : &uint32_x86;