From 750d2fa8cc39092716eb832cba4c709e36080013 Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Fri, 6 Feb 2009 16:19:58 +0100 Subject: [PATCH] automatic commit --- breezed.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/breezed.cc b/breezed.cc index 6f079b2..431cde3 100644 --- a/breezed.cc +++ b/breezed.cc @@ -41,7 +41,7 @@ const int minor_version_number = 0; const int buffer_size = 1024; -const char *default_confguration_file = "/etc/breezed.conf"; +const char *default_configuration_file = "/etc/breezed.conf"; // The time period to check the temperature. const int polling_delay = 5; @@ -182,8 +182,8 @@ int main(int argc, char **argv) { char buffer[buffer_size], token[buffer_size]; - configuration_file = new char[strlen(default_confguration_file) + 1]; - strcpy(configuration_file, default_confguration_file); + configuration_file = new char[strlen(default_configuration_file) + 1]; + strcpy(configuration_file, default_configuration_file); int i = 1; while(i < argc) { -- 2.20.1