]> git.saurik.com Git - apt.git/commitdiff
Ignore .* for configuration directory processing. Close...
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:56:57 +0000 (16:56 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:56:57 +0000 (16:56 +0000)
Author: jgg
Date: 2001-03-03 23:29:55 GMT
Ignore .* for configuration directory processing. Closes: #86923

apt-pkg/contrib/configuration.cc
debian/changelog

index b3b425cda846affffc8eb7f93c138dbff46b8320..18dded669100721da838567927c7fc7924be1a83 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: configuration.cc,v 1.15 2001/02/20 07:03:17 jgg Exp $
+// $Id: configuration.cc,v 1.16 2001/03/03 23:29:55 jgg Exp $
 /* ######################################################################
 
    Configuration Class
@@ -697,8 +697,7 @@ bool ReadConfigDir(Configuration &Conf,string Dir,bool AsSectional,
    
    for (struct dirent *Ent = readdir(D); Ent != 0; Ent = readdir(D))
    {
-      if (strcmp(Ent->d_name,".") == 0 ||
-         strcmp(Ent->d_name,"..") == 0)
+      if (Ent->d_name[0] == '.')
         continue;
       
       // Skip bad extensions
index 3199cfb74718c20f62892e2b640d9b897d5807aa..8e2fee212cb9cd2e88e10ca5862f7dd2a0e60952 100644 (file)
@@ -2,6 +2,8 @@ apt (0.5.1) unstable; urgency=low
 
   * Fixed #82894 again, or should be and.
   * Process the option string right. Closes: #86921
+  * Don't eat the last command for pipes. Closes: #86923
+  * Ignore .* for configuration directory processing. Closes: #86923
   * Alfredo's no_proxy patch
   * Documentation fixes. Closes: #87091
   * JoeyH's double slash bug