jim         02/05/01 16:08:26

  Modified:    dso/unix dso.c
  Log:
  Fix compile breakage
  
  Revision  Changes    Path
  1.52      +2 -2      apr/dso/unix/dso.c
  
  Index: dso.c
  ===================================================================
  RCS file: /home/cvs/apr/dso/unix/dso.c,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- dso.c     1 May 2002 22:50:45 -0000       1.51
  +++ dso.c     1 May 2002 23:08:26 -0000       1.52
  @@ -127,9 +127,9 @@
       char* err_msg = NULL;
       if (NSCreateObjectFileImageFromFile(path, &image) == 
NSObjectFileImageSuccess) {
   #if defined(NSLINKMODULE_OPTION_RETURN_ON_ERROR)
  -        handle = NSLinkModule(image, path, 
NSLINKMODULE_OPTION_RETURN_ON_ERROR);
  +        os_handle = NSLinkModule(image, path, 
NSLINKMODULE_OPTION_RETURN_ON_ERROR);
   #else
  -        handle = NSLinkModule(image, path, FALSE);
  +        os_handle = NSLinkModule(image, path, FALSE);
   #endif
           NSDestroyObjectFileImage(image);
       }
  
  
  

Reply via email to