author | Michael Krelin <hacker@klever.net> | 2008-01-12 15:10:22 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-01-12 23:26:28 (UTC) |
commit | d0b30e379fc4032782776866fbb0adc6148ea023 (patch) (side-by-side diff) | |
tree | 5433c44938b06bd55c26851555e821db326e1cd0 | |
parent | 7b5a82f255a85fe2ef466b68e40d9eb1829c633a (diff) | |
download | libopkele-d0b30e379fc4032782776866fbb0adc6148ea023.zip libopkele-d0b30e379fc4032782776866fbb0adc6148ea023.tar.gz libopkele-d0b30e379fc4032782776866fbb0adc6148ea023.tar.bz2 |
fixed priority_map comparison function
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | include/opkele/types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/opkele/types.h b/include/opkele/types.h index 4e1415f..de44a5c 100644 --- a/include/opkele/types.h +++ b/include/opkele/types.h @@ -168,33 +168,33 @@ namespace opkele { * @return query string */ string query_string(const char *prefix = "openid.") const; }; /** * dump the key/value pairs for the parameters to the stream. * @param o output stream * @param p the parameters */ ostream& operator << (ostream& o,const params_t& p); namespace xrd { struct priority_compare { inline bool operator()(long a,long b) const { - return (a<0) ? false : (b<0) ? false : (a<b); + return (a<0) ? false : (b<0) ? true : (a<b); } }; template <typename _DT> class priority_map : public multimap<long,_DT,priority_compare> { typedef multimap<long,_DT,priority_compare> map_type; public: inline _DT& add(long priority,const _DT& d) { return insert(typename map_type::value_type(priority,d))->second; } }; typedef priority_map<string> canonical_ids_t; typedef priority_map<string> local_ids_t; typedef set<string> types_t; |