aboutsummaryrefslogtreecommitdiff
path: root/findutils
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-09-14 13:36:48 +1000
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-09-14 13:36:48 +1000
commit6e55663080e33d1856d949d60e45b135f2613087 (patch)
tree7318387028176038ca96344831febb30a582d661 /findutils
parentc6933c626b97c3f6bc446586ee2e6c7d9930c938 (diff)
parentdcaed97e0f44d0cd285fb590ec6ec80d0d73e738 (diff)
downloadbusybox-w32-6e55663080e33d1856d949d60e45b135f2613087.tar.gz
busybox-w32-6e55663080e33d1856d949d60e45b135f2613087.tar.bz2
busybox-w32-6e55663080e33d1856d949d60e45b135f2613087.zip
Merge branch 'origin/master' (early part)
Diffstat (limited to 'findutils')
-rw-r--r--findutils/find.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/find.c b/findutils/find.c
index 297081489..d4bcd6545 100644
--- a/findutils/find.c
+++ b/findutils/find.c
@@ -1210,7 +1210,7 @@ IF_FEATURE_FIND_MAXDEPTH(OPT_MINDEPTH,)
1210 if (opt == OPT_MINDEPTH || opt == OPT_MINDEPTH + 1) { 1210 if (opt == OPT_MINDEPTH || opt == OPT_MINDEPTH + 1) {
1211 if (!argp[1]) 1211 if (!argp[1])
1212 bb_show_usage(); 1212 bb_show_usage();
1213 minmaxdepth[opt - OPT_MINDEPTH] = xatoi_u(argp[1]); 1213 minmaxdepth[opt - OPT_MINDEPTH] = xatoi_positive(argp[1]);
1214 argp[0] = (char*)"-a"; 1214 argp[0] = (char*)"-a";
1215 argp[1] = (char*)"-a"; 1215 argp[1] = (char*)"-a";
1216 argp++; 1216 argp++;