formatting fixes

This commit is contained in:
Guenter Obiltschnig
2014-03-07 18:01:48 +01:00
parent 005a5d7ee1
commit 3ed477ce10
4 changed files with 9 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
//
// HTTPCookie.cpp
//
// $Id: //poco/1.4/Net/src/HTTPCookie.cpp#1 $
// $Id: //poco/1.4/Net/src/HTTPCookie.cpp#3 $
//
// Library: Net
// Package: HTTP
@@ -102,7 +102,7 @@ HTTPCookie::HTTPCookie(const NameValueCollection& nvc):
{
setPath(value);
}
else if (icompare(name, "Priority") == 0)
else if (icompare(name, "priority") == 0)
{
setPriority(value);
}
@@ -223,6 +223,7 @@ void HTTPCookie::setPath(const std::string& path)
_path = path;
}
void HTTPCookie::setPriority(const std::string& priority)
{
_priority = priority;