Diff for /Amaya/amaya/query.c between versions 1.324 and 1.325

version 1.324, 2003/04/22 12:23:58 version 1.325, 2003/06/11 13:50:51
Line 3945  void InitAmayaCache (void) Line 3945  void InitAmayaCache (void)
     printf ("Couldn't create fd_pid %s\n", str);      printf ("Couldn't create fd_pid %s\n", str);
 #endif /* _WINDOWS */  #endif /* _WINDOWS */
 }  }
   
   /*-----------------------------------------------------------------------
     ClearCacheEntry
     Clears the libwww cache entry for the corresponding URL, if it exists.
     -----------------------------------------------------------------------*/
   void ClearCacheEntry (char *url)
   {
     HTCache * cache;
     HTAnchor * anchor;
     HTParentAnchor * panchor;
   
     if (!url || !*url)
       return;
     
     anchor = HTAnchor_findAddress (url);
     panchor = HTAnchor_parent (anchor);
     cache = HTCache_find (panchor, NULL);
     if (cache)
       HTCache_remove (cache);
   }

Removed from v.1.324  
changed lines
  Added in v.1.325


Webmaster