Gabriele Contini
2019-09-07 7b1950f29fa4a73a43b71ee3c1e444fa38e296f0
src/tools/license-generator/license-generator.cpp
@@ -107,7 +107,9 @@
   string client_signature = "";
   if (vm.count("client_signature")) {
      client_signature = vm["client_signature"].as<string>();
      cout << "cli sig:" << client_signature;
      regex e("[A-Za-z0-9\\+/]{4}-[A-Za-z0-9\\+/]{4}-[A-Za-z0-9\\+/]{4}-[A-Za-z0-9\\+/]{4}");
      cout << "\nregex:";
      if (!regex_match(client_signature, e)) {
         cerr << endl << "Client signature not recognized: "
            << client_signature
@@ -178,7 +180,7 @@
   if (vm.count("output")) {
      const std::string fname = vm["output"].as<string>();
      fstream ofstream(fname, std::ios::out | std::ios::trunc);
      fstream ofstream(fname, std::ios::out | std::ios::app);
      if (!ofstream.is_open()) {
         cerr << "can't open file [" << fname << "] for output." << endl
               << " error: " << strerror( errno);