]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/acquire-item.cc
* Use cvs update -d in debian/rules cvs-build rather th...
[apt.git] / apt-pkg / acquire-item.cc
index 717d64754d1da490190d2c5c6b816bd07bfaec34..27e98283f90427c3b94fdfe85a6282cc5e6a062b 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: acquire-item.cc,v 1.45 2002/04/26 05:35:57 jgg Exp $
+// $Id: acquire-item.cc,v 1.46 2003/02/02 22:19:17 jgg Exp $
 /* ######################################################################
 
    Acquire Item - Item to acquire
@@ -121,7 +121,7 @@ void pkgAcquire::Item::Rename(string From,string To)
    if (rename(From.c_str(),To.c_str()) != 0)
    {
       char S[300];
-      sprintf(S,_("rename failed, %s (%s -> %s)."),strerror(errno),
+      snprintf(S,sizeof(S),_("rename failed, %s (%s -> %s)."),strerror(errno),
              From.c_str(),To.c_str());
       Status = StatError;
       ErrorText = S;