Diff for /Amaya/amaya/AHTURLTools.c between versions 1.91 and 1.92

version 1.91, 2000/03/13 15:57:28 version 1.92, 2000/03/13 17:15:21
Line 1870  CHAR_T*              target; Line 1870  CHAR_T*              target;
           ustrcat (target, WC_DIR_STR);            ustrcat (target, WC_DIR_STR);
 #endif  #endif
         i = ustrlen (target);          i = ustrlen (target);
         CleanCopyFileURL (&target[i], &src[1]);          ustrcpy (&target[i], &src[1]);
         change = TRUE;          change = TRUE;
      }       }
 #endif /* _WINDOWS */  #endif /* _WINDOWS */
   
    else     else
      CleanCopyFileURL (target, src);       ustrcpy (target, src);
   
    /* remove /../ and /./ */     /* remove /../ and /./ */
    SimplifyUrl (&target);     SimplifyUrl (&target);

Removed from v.1.91  
changed lines
  Added in v.1.92


Webmaster