diff options
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 67f65b411..bc1681820 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: fileutl.cc,v 1.25 1999/03/20 03:49:31 jgg Exp $ +// $Id: fileutl.cc,v 1.26 1999/03/21 07:24:14 jgg Exp $ /* ###################################################################### File Utilities @@ -85,7 +85,7 @@ int GetLock(string File,bool Errors) { if (errno == ENOLCK) { - _error->Warning("Not using locking for nfs mounted lock file %s",File.c_sr()); + _error->Warning("Not using locking for nfs mounted lock file %s",File.c_str()); return true; } if (Errors == true) |