[BACK]Return to man.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / man

Diff for /src/usr.bin/man/Attic/man.c between version 1.36 and 1.37

version 1.36, 2008/01/04 22:37:54 version 1.37, 2008/12/30 13:14:41
Line 172 
Line 172 
         config(conffile);          config(conffile);
   
         /* Get the machine type unless specified by -S. */          /* Get the machine type unless specified by -S. */
         if (machine == NULL && (machine = getenv("MACHINE")) == NULL)          if (machine || (machine = getenv("MACHINE")))
                   for (p = machine; *p; ++p)
                           *p = tolower(*p);
           else
                 machine = MACHINE;                  machine = MACHINE;
   
         /* If there's no _default list, create an empty one. */          /* If there's no _default list, create an empty one. */

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.37