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;
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) {