commit | 29843cf1412e849978daa0aae4bd56e43f141751 | [log] [tgz] |
---|---|---|
author | Josh Gao <jmgao@google.com> | Fri Nov 13 23:22:47 2015 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Nov 13 23:22:47 2015 +0000 |
tree | 28db6d65ec5c47c27c44152e595dcb28ec02077b | |
parent | f131772a79f75656d9e7593268e5bdecf40ebec0 [diff] | |
parent | f96dc73b9f218f464640a9cdd80c389723665d5c [diff] |
Merge "adb: don't pull symlinks."
diff --git a/adb/file_sync_client.cpp b/adb/file_sync_client.cpp index dcf0b26..a2d2a66 100644 --- a/adb/file_sync_client.cpp +++ b/adb/file_sync_client.cpp
@@ -887,8 +887,7 @@ continue; } - if (S_ISREG(src_mode) || S_ISLNK(src_mode)) { - // TODO(b/25601283): symlinks shouldn't be handled as files. + if (S_ISREG(src_mode)) { std::string path_holder; if (dst_isdir) { // If we're copying a remote file to a local directory, we