diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2011-07-15 10:16:59 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2011-07-15 10:16:59 +0200 |
commit | 5e4d60ae66873924815edb89d533faab7006a46b (patch) | |
tree | c0e3c05585374c810100ad7bf6a9f283a7b52a3d /apt-pkg/contrib/configuration.h | |
parent | 0dc01623882a8a51416e8635e76c941fc302abec (diff) | |
parent | 1d08f27046533e36849a63c084f51809be484d8c (diff) |
merged from the debian-sid branch
Diffstat (limited to 'apt-pkg/contrib/configuration.h')
-rw-r--r-- | apt-pkg/contrib/configuration.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apt-pkg/contrib/configuration.h b/apt-pkg/contrib/configuration.h index 71e5a0e47..3568ce815 100644 --- a/apt-pkg/contrib/configuration.h +++ b/apt-pkg/contrib/configuration.h @@ -82,8 +82,9 @@ class Configuration inline void Set(const string &Name,const string &Value) {Set(Name.c_str(),Value);}; void CndSet(const char *Name,const string &Value); + void CndSet(const char *Name,const int Value); void Set(const char *Name,const string &Value); - void Set(const char *Name,const int &Value); + void Set(const char *Name,const int Value); inline bool Exists(const string &Name) const {return Exists(Name.c_str());}; bool Exists(const char *Name) const; |