+ncbi-blast+ (2.2.31-2) unstable; urgency=medium
+
+ * Fix a long-standing typo for GNU/kFreeBSD FTBS (Aaron M. Ucko)
+
+ -- Olivier Sallou <osallou@debian.org> Fri, 11 Dec 2015 09:44:43 +0100
+
ncbi-blast+ (2.2.31-1) unstable; urgency=medium
* New upstream release
--- /dev/null
+Subject: Fix missing colon
+Description: colon missing causing FTBS on some archs
+Author: Olivier Sallou <olivier.sallou@irisa.fr>
+Forwarded: yes
+Comment: updated upstream at revision 70194
+--- a/c++/src/corelib/ncbifile.cpp
++++ b/c++/src/corelib/ncbifile.cpp
+@@ -4423,7 +4423,7 @@
+ if (statvfs(path.c_str(), &st) != 0) { \
+ NCBI_THROW(CFileErrnoException, eFileSystemInfo, msg); \
+ } \
+- info->total_space = (Uint8)st.f_bsize * st.f_blocks \
++ info->total_space = (Uint8)st.f_bsize * st.f_blocks; \
+ if (st.f_frsize) { \
+ info->free_space = (Uint8)st.f_frsize * st.f_bavail; \
+ info->block_size = (unsigned long)st.f_frsize; \
+@@ -4431,7 +4431,7 @@
+ info->free_space = (Uint8)st.f_bsize * st.f_bavail; \
+ info->block_size = (unsigned long)st.f_bsize; \
+ } \
+- info->used_space = info->total_space - info->free_space
++ info->used_space = info->total_space - info->free_space;
+
+
+ #define GET_STATFS_INFO \
+@@ -4443,7 +4443,7 @@
+ info->total_space = (Uint8)st.f_bsize * st.f_blocks; \
+ info->free_space = (Uint8)st.f_bsize * st.f_bavail; \
+ info->used_space = info->total_space - info->free_space; \
+- info->block_size = (unsigned long)st.f_bsize
++ info->block_size = (unsigned long)st.f_bsize;
+
+
+