mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 20:59:45 +01:00
formatting fixes
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user