diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:19 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:19 +0000 |
commit | 54db103455f0601d4c81e0bb368e602f2e77115c (patch) | |
tree | f114390fd4c266fc6744f6b11bc6344e61e3a972 /apt-pkg/acquire-method.h | |
parent | 9e0349cc4674d0f90434e415e157a21f1ff9589b (diff) |
fixed casting bug
Author: jgg
Date: 1998-12-22 07:58:49 GMT
fixed casting bug
Diffstat (limited to 'apt-pkg/acquire-method.h')
-rw-r--r-- | apt-pkg/acquire-method.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apt-pkg/acquire-method.h b/apt-pkg/acquire-method.h index cefb60468..014cfb7f1 100644 --- a/apt-pkg/acquire-method.h +++ b/apt-pkg/acquire-method.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acquire-method.h,v 1.7 1998/12/05 04:19:02 jgg Exp $ +// $Id: acquire-method.h,v 1.8 1998/12/22 07:58:49 jgg Exp $ /* ###################################################################### Acquire Method - Method helper class + functions @@ -56,6 +56,7 @@ class pkgAcqMethod // Outgoing messages void Fail(bool Transient = false); + inline void Fail(const char *Why, bool Transient = false) {Fail(Why,Transient);}; void Fail(string Why, bool Transient = false); void URIStart(FetchResult &Res); void URIDone(FetchResult &Res,FetchResult *Alt = 0); |