Added a comment with the new /sys/* temperature files.
[breezed.git] / breezed.cc
index 431cde3..ae61293 100644 (file)
@@ -3,7 +3,7 @@
 
    breezed is a fan speed control daemon for Linux computers.
 
-   Copyright (c) 2008 Francois Fleuret
+   Copyright (c) 2008, 2009 Francois Fleuret
    Written by Francois Fleuret <francois@fleuret.org>
 
    This file is part of breezed.
@@ -37,7 +37,7 @@
 using namespace std;
 
 const int major_version_number = 1;
-const int minor_version_number = 0;
+const int minor_version_number = 2;
 
 const int buffer_size = 1024;
 
@@ -321,6 +321,7 @@ Written by Francois Fleuret (francois@fleuret.org).\n";
 
   if(configuration_file) {
     ifstream cf(configuration_file);
+
     if(cf.fail()) {
       cerr << "Can not open " << configuration_file << " for reading." << endl;
       exit(1);
@@ -470,6 +471,10 @@ Written by Francois Fleuret (francois@fleuret.org).\n";
               cout << " " << t;
             }
 
+            // So that we can deal with the new files where the
+            // temperature are in 1/1000th of C
+            if(t > 1000) t /= 1000;
+
             if(t > temperature) temperature = t;
           }
         }