Minor fixes
authorEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Wed, 1 Apr 2015 14:18:34 +0000 (16:18 +0200)
committerEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Wed, 1 Apr 2015 14:18:34 +0000 (16:18 +0200)
example/diameter/launcher/main.cpp
example/diameter/stackManagement/main.cpp

index 54fcbdc..5a8422d 100644 (file)
@@ -358,7 +358,7 @@ public:
 bool Launcher::getDataBlockFromHexFile(const std::string &pathfile, anna::DataBlock &db) const throw() {
 
   // Get hex string
-  static char buffer[2048];
+  static char buffer[8192];
   std::ifstream infile(pathfile.c_str(), std::ifstream::in);
   if(infile.is_open()) {
     infile >> buffer;
index 727939a..96645b3 100644 (file)
@@ -68,7 +68,7 @@ int main(int argc, char** argv) {
    std::string param = argv[1] ? argv[1] : "";
 
    if (param == "") {
-      std::string msg = anna::functions::asString("Use: %s <list of xml dictionaries overloaded>,\n     i.e. '%s avps.xml commands.xml'", exec.c_str(), exec.c_str());
+      std::string msg = anna::functions::asString("Usage: %s <list of xml dictionaries overloaded>,\n     i.e. '%s avps.xml commands.xml'", exec.c_str(), exec.c_str());
       _exit(msg);
    }