diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:07 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:58:07 +0000 |
commit | e7b470eefa0499d0edbdda4f466eb77b17c2067b (patch) | |
tree | 3edaecfaeb5c653fc7f23ba39e9bc3c47305e34d /apt-pkg/contrib | |
parent | 0db4a45bf91faa06616a90865068ac6c07885edf (diff) |
More ignoring of versionless packages
Author: jgg
Date: 2001-05-27 05:36:04 GMT
More ignoring of versionless packages
Diffstat (limited to 'apt-pkg/contrib')
-rw-r--r-- | apt-pkg/contrib/strutl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index 5312a3f4f..5e7031384 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: strutl.cc,v 1.39 2001/05/27 05:19:30 jgg Exp $ +// $Id: strutl.cc,v 1.40 2001/05/27 05:36:04 jgg Exp $ /* ###################################################################### String Util - Some useful string functions. @@ -877,7 +877,7 @@ void ioprintf(ostream &out,const char *format,...) // sprintf the description char S[400]; vsnprintf(S,sizeof(S),format,args); - // std::ostream::operator <<(out, (const char *)S); + out << S; } /*}}}*/ |