diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-03 23:35:24 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-03 23:35:24 +0000 |
commit | 04d4d5433e517210c77fcd0bccaba76a0de57e66 (patch) | |
tree | e886796bef543f6646177d2c55512847438cdc2d /net/ftp/ftp_ctrl_response_buffer.h | |
parent | 003b2fbb1211d59b89aea7961b675aea5ba56942 (diff) | |
download | chromium_src-04d4d5433e517210c77fcd0bccaba76a0de57e66.zip chromium_src-04d4d5433e517210c77fcd0bccaba76a0de57e66.tar.gz chromium_src-04d4d5433e517210c77fcd0bccaba76a0de57e66.tar.bz2 |
Followup after http://codereview.chromium.org/149368
Fix minor issues in new ftp code.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/160541
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22347 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/ftp/ftp_ctrl_response_buffer.h')
-rw-r--r-- | net/ftp/ftp_ctrl_response_buffer.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/ftp/ftp_ctrl_response_buffer.h b/net/ftp/ftp_ctrl_response_buffer.h index 33f04b9..66aae8b 100644 --- a/net/ftp/ftp_ctrl_response_buffer.h +++ b/net/ftp/ftp_ctrl_response_buffer.h @@ -16,8 +16,7 @@ namespace net { struct FtpCtrlResponse { static const int kInvalidStatusCode; - FtpCtrlResponse() : status_code(kInvalidStatusCode) { - } + FtpCtrlResponse() : status_code(kInvalidStatusCode) {} int status_code; // Three-digit status code. std::vector<std::string> lines; // Response lines, without CRLFs. @@ -69,7 +68,7 @@ class FtpCtrlResponseBuffer { // Part of response parsed as status text. std::string status_text; - // Text before parsing, without ending CRLF. + // Text before parsing, without terminating CRLF. std::string raw_text; }; |