lib/config/_autoresponse_file.cc
changeset 0 6f7a81934006
equal deleted inserted replaced
-1:000000000000 0:6f7a81934006
       
     1 #include "configio.h"
       
     2 #include <limits.h>
       
     3 
       
     4 static mystring default_autoresponse_file("message.txt");
       
     5 static const mystring filename_autoresponse_file = "autoresponse-file";
       
     6 mystring configuration::autoresponse_file() const {
       
     7   return read_str(filename_autoresponse_file,
       
     8                     default_autoresponse_file,
       
     9 		    (config_cache<mystring>&)autoresponse_file_cache);
       
    10 }