summaryrefslogtreecommitdiffstats
path: root/minzip/DirUtil.c
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2015-02-09 05:15:24 +0100
committerAndroid Git Automerger <android-git-automerger@android.com>2015-02-09 05:15:24 +0100
commit54b373c04493ddd0be3161fd3253681a7b7f49a6 (patch)
tree678942f5c87df30e46113670cc522734c56cce05 /minzip/DirUtil.c
parentam 42b09d25: am 6a0d2fbc: Merge "There\'s no GPL code in \'updater\'." (diff)
parentam 99e084ca: Merge "Remove dead/unused code and realign some of the comments to make it more cleaner and easier to read" (diff)
downloadandroid_bootable_recovery-54b373c04493ddd0be3161fd3253681a7b7f49a6.tar
android_bootable_recovery-54b373c04493ddd0be3161fd3253681a7b7f49a6.tar.gz
android_bootable_recovery-54b373c04493ddd0be3161fd3253681a7b7f49a6.tar.bz2
android_bootable_recovery-54b373c04493ddd0be3161fd3253681a7b7f49a6.tar.lz
android_bootable_recovery-54b373c04493ddd0be3161fd3253681a7b7f49a6.tar.xz
android_bootable_recovery-54b373c04493ddd0be3161fd3253681a7b7f49a6.tar.zst
android_bootable_recovery-54b373c04493ddd0be3161fd3253681a7b7f49a6.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;