From b97948a7046b3b6b167d1d1723a76936dc387322 Mon Sep 17 00:00:00 2001 From: zimoch Date: Fri, 30 Nov 2007 16:45:32 +0000 Subject: [PATCH] %B fixed --- src/BinaryConverter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BinaryConverter.cc b/src/BinaryConverter.cc index cbe9449..f8084bf 100644 --- a/src/BinaryConverter.cc +++ b/src/BinaryConverter.cc @@ -38,7 +38,7 @@ parse(const StreamFormat& format, StreamBuffer& info, if (format.conv == 'B') { // user defined characters for %B (next 2 in source) - if (!*source ) + if (*source) { if (*source == esc) source++; info.append(*source++);