Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Unified Diff: net/ftp/ftp_directory_listing_parser_netware.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/ftp/ftp_directory_listing_parser_netware.cc
diff --git a/net/ftp/ftp_directory_listing_parser_netware.cc b/net/ftp/ftp_directory_listing_parser_netware.cc
index 20716ab9d649dae9d166cf350dd9bf9431123c85..f65e75410141204880244cc04d173648bceac309 100644
--- a/net/ftp/ftp_directory_listing_parser_netware.cc
+++ b/net/ftp/ftp_directory_listing_parser_netware.cc
@@ -40,7 +40,7 @@ bool ParseFtpDirectoryListingNetware(
const base::Time& current_time,
std::vector<FtpDirectoryListingEntry>* entries) {
if (!lines.empty() &&
- !StartsWith(lines[0], base::ASCIIToUTF16("total "), true)) {
+ !StartsWith(lines[0], base::ASCIIToUTF16("total "), true)) {
return false;
}
@@ -80,8 +80,11 @@ bool ParseFtpDirectoryListingNetware(
entry.size = -1;
// Netware uses the same date listing format as Unix "ls -l".
- if (!FtpUtil::LsDateListingToTime(columns[4], columns[5], columns[6],
- current_time, &entry.last_modified)) {
+ if (!FtpUtil::LsDateListingToTime(columns[4],
+ columns[5],
+ columns[6],
+ current_time,
+ &entry.last_modified)) {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698