Ignore:
Timestamp:
Jan 27, 2000, 10:51:17 PM (26 years ago)
Author:
sandervl
Message:

added fs check export

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/oslibdos.cpp

    r2493 r2535  
    1 /* $Id: oslibdos.cpp,v 1.16 2000-01-21 22:38:53 sandervl Exp $ */
     1/* $Id: oslibdos.cpp,v 1.17 2000-01-27 21:51:17 sandervl Exp $ */
    22/*
    33 * Wrappers for OS/2 Dos* API
     
    377377  case OSLIB_SEARCHENV:
    378378  {
    379         char *env = getenv(path);
    380         if(env == NULL)
    381                 return 0;
    382 
    383         while(*env != '=') env++;
    384         env++;
    385         while(*env == ' ') env++;
    386         if(DosSearchPath(SEARCH_IGNORENETERRS | SEARCH_ENVIRONMENT, env,
     379        if(DosSearchPath(SEARCH_IGNORENETERRS | SEARCH_ENVIRONMENT, path,
    387380                         name, full_name, length_fullname) != 0) {
    388381                return 0;
Note: See TracChangeset for help on using the changeset viewer.