Browse Source

fix error message in merge_pcaps

Jens Keim 6 years ago
parent
commit
390991bf11
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code_boost/src/cxx/pcap_processor.cpp

+ 1 - 1
code_boost/src/cxx/pcap_processor.cpp

@@ -93,7 +93,7 @@ std::string pcap_processor::merge_pcaps(const std::string pcap_path) {
             try {
                 writer.write(*iterator_base);
             } catch (serialization_error&) {
-                    std::cout << "Could not serialize base packet with timestamp " << std::setprecision(15) << tstmp_attack << std::endl;
+                    std::cout << "Could not serialize base packet with timestamp " << std::setprecision(15) << tstmp_base << std::endl;
             }
             iterator_base++;
         }