Show
Ignore:
Timestamp:
10/04/07 17:16:55 (5 years ago)
Author:
andi
Message:

owi updates

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/openmct/packages/system/owi/src/owi.c

    r468 r477  
    3434   /* Loop counter */ 
    3535   int i = 0; 
     36   int j = 0; 
    3637 
    3738   printf("Content-Type: text/html\n\n"); 
     
    5859   for (i = 0; modules[i].description != NULL; i++) { 
    5960      printf("<tr><td>\n"); 
     61      for (j = 0; j < modules[i].level * 5; j++) { 
     62         printf("&nbsp;"); 
     63      } 
    6064      if (modules[i].main) { 
    6165         printf("<a href=\"%s?module=%s\">%s</a>\n", 
     
    102106 
    103107   if (!strcmp(module, "")) { 
    104       variable_set("module", "sysinfo"); 
     108      variable_set("module", "user"); 
    105109      module =  variable_get("module"); 
    106110   }