/[monit]/monit/http/cervlet.c
ViewVC logotype

Diff of /monit/http/cervlet.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.93 by chopp, Wed Sep 3 15:29:29 2003 UTC revision 1.94 by chopp, Sun Sep 14 00:03:54 2003 UTC
# Line 962  static void do_home_process(HttpRequest Line 962  static void do_home_process(HttpRequest
962    int header= TRUE;    int header= TRUE;
963    Service_T s;    Service_T s;
964    
965    for(s= servicelist; s; s= s->next) {    for(s= servicelist_conf; s; s= s->next_conf) {
966            
967      int isrunning;      int isrunning;
968      char *uptime;      char *uptime;
# Line 1065  static void do_home_device(HttpRequest r Line 1065  static void do_home_device(HttpRequest r
1065    int on= TRUE;    int on= TRUE;
1066    int header= TRUE;    int header= TRUE;
1067        
1068    for(s= servicelist; s; s= s->next) {    for(s= servicelist_conf; s; s= s->next_conf) {
1069            
1070      if(s->type != TYPE_DEVICE) continue;      if(s->type != TYPE_DEVICE) continue;
1071            
# Line 1167  static void do_home_file(HttpRequest req Line 1167  static void do_home_file(HttpRequest req
1167    int header= TRUE;    int header= TRUE;
1168    struct stat stat_buf;    struct stat stat_buf;
1169        
1170    for(s= servicelist; s; s= s->next) {    for(s= servicelist_conf; s; s= s->next_conf) {
1171            
1172      if(s->type != TYPE_FILE) continue;      if(s->type != TYPE_FILE) continue;
1173            
# Line 1249  static void do_home_directory(HttpReques Line 1249  static void do_home_directory(HttpReques
1249    int header= TRUE;    int header= TRUE;
1250    struct stat stat_buf;    struct stat stat_buf;
1251        
1252    for(s= servicelist; s; s= s->next) {    for(s= servicelist_conf; s; s= s->next_conf) {
1253            
1254      if(s->type != TYPE_DIRECTORY) continue;      if(s->type != TYPE_DIRECTORY) continue;
1255    
# Line 1327  static void do_home_remote(HttpRequest r Line 1327  static void do_home_remote(HttpRequest r
1327    int on= TRUE;    int on= TRUE;
1328    int header= TRUE;    int header= TRUE;
1329        
1330    for(s= servicelist; s; s= s->next) {    for(s= servicelist_conf; s; s= s->next_conf) {
1331            
1332      if(s->type != TYPE_REMOTE) continue;      if(s->type != TYPE_REMOTE) continue;
1333    

Legend:
Removed from v.1.93  
changed lines
  Added in v.1.94

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26