]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/strutl.cc
More ignoring of versionless packages
[apt.git] / apt-pkg / contrib / strutl.cc
index 5312a3f4f3a6b9bb7499328f91c0fc0961e64d0c..5e703138492c05062e9bdcde2473c72888fe1e46 100644 (file)
@@ -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;
 }
                                                                        /*}}}*/