]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/versionmatch.cc
* Mark a message from dselect backend as translatable
[apt.git] / apt-pkg / versionmatch.cc
index 1abb7e4addcfc7e5ae87524d4d5f941dcf84adaa..4a426809c9095bc9002137beaf75b4b3904cd89a 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: versionmatch.cc,v 1.8 2003/04/24 03:16:58 doogie Exp $
+// $Id: versionmatch.cc,v 1.9 2003/05/19 17:58:26 doogie Exp $
 /* ######################################################################
 
    Version Matching 
@@ -11,9 +11,6 @@
    ##################################################################### */
                                                                        /*}}}*/
 // Include Files                                                       /*{{{*/
-#ifdef __GNUG__
-#pragma implementation "apt-pkg/versionmatch.h"
-#endif
 #include <apt-pkg/versionmatch.h>
 
 #include <apt-pkg/strutl.h>
@@ -208,8 +205,12 @@ bool pkgVersionMatch::FileMatch(pkgCache::PkgFileIterator File)
    
    if (Type == Origin)
    {
-      if (!strcmp(File.Archive(), "now"))      /* ignore local "status" file */
-        return false;
+      if (OrSite.empty() == false) {
+        if (File->Site == 0 || OrSite != File.Site())
+           return false;
+      } else // so we are talking about file:// or status file
+        if (strcmp(File.Site(),"") == 0 && File->Archive != 0) // skip the status file
+           return false;
       return (OrSite == File.Site());          /* both strings match */
    }