~singpolyma/biboumi

5607c101d4b28244bde85bedfb9ab22b882309fc — louiz’ 2 years ago 0bb4f14
Little code simplification for conf_filename
1 files changed, 4 insertions(+), 4 deletions(-)

M src/main.cpp
M src/main.cpp => src/main.cpp +4 -4
@@ 194,7 194,7 @@ static int main_loop(std::string hostname, std::string password)

int main(int ac, char** av)
{
  std::string cli_conf_filename;
  std::string conf_filename{};
  bool test_conf = false;
  if (ac > 1)
    {


@@ 206,7 206,7 @@ int main(int ac, char** av)
          else if ((arg == "-t") || (arg == "--test-config"))
            test_conf = true;
          else if (i + 1 == ac)
            cli_conf_filename = arg;
            conf_filename = arg;
          else
            {
              std::cerr << "Unknow command line option: " << arg


@@ 215,8 215,8 @@ int main(int ac, char** av)
            }
        }
    }
  const std::string conf_filename =
      cli_conf_filename.empty() ? xdg_config_path("biboumi.cfg"): cli_conf_filename;
  if (conf_filename.empty())
    conf_filename = xdg_config_path("biboumi.cfg");
  std::cout << "Using configuration file: " << conf_filename << std::endl;

  if (!Config::read_conf(conf_filename))