summaryrefslogtreecommitdiffstats
path: root/minzip/DirUtil.c
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2015-02-08 16:20:50 +0100
committerAndroid Git Automerger <android-git-automerger@android.com>2015-02-08 16:20:50 +0100
commitec5c1c1e291062576925b80b532d36df118103f5 (patch)
treea329cbb5c46df853065a18d54b5c2f24fdb22e2e /minzip/DirUtil.c
parentam 6a0d2fbc: Merge "There\'s no GPL code in \'updater\'." (diff)
parentMerge "Remove dead/unused code and realign some of the comments to make it more cleaner and easier to read" (diff)
downloadandroid_bootable_recovery-ec5c1c1e291062576925b80b532d36df118103f5.tar
android_bootable_recovery-ec5c1c1e291062576925b80b532d36df118103f5.tar.gz
android_bootable_recovery-ec5c1c1e291062576925b80b532d36df118103f5.tar.bz2
android_bootable_recovery-ec5c1c1e291062576925b80b532d36df118103f5.tar.lz
android_bootable_recovery-ec5c1c1e291062576925b80b532d36df118103f5.tar.xz
android_bootable_recovery-ec5c1c1e291062576925b80b532d36df118103f5.tar.zst
android_bootable_recovery-ec5c1c1e291062576925b80b532d36df118103f5.zip
Diffstat (limited to 'minzip/DirUtil.c')
-rw-r--r--minzip/DirUtil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/minzip/DirUtil.c b/minzip/DirUtil.c
index fe2c880ac..97cb2e0ee 100644
--- a/minzip/DirUtil.c
+++ b/minzip/DirUtil.c
@@ -85,7 +85,7 @@ dirCreateHierarchy(const char *path, int mode,
c--;
}
if (c == cpath) {
-//xxx test this path
+ //xxx test this path
/* No directory component. Act like the path was empty.
*/
errno = ENOENT;
@@ -206,7 +206,7 @@ dirUnlinkHierarchy(const char *path)
/* recurse over components */
errno = 0;
while ((de = readdir(dir)) != NULL) {
-//TODO: don't blow the stack
+ //TODO: don't blow the stack
char dn[PATH_MAX];
if (!strcmp(de->d_name, "..") || !strcmp(de->d_name, ".")) {
continue;