aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-02-14 10:43:40 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-02-14 10:43:40 +0000
commit5ba53c05fce018ef4b0d79d942f3a40742304685 (patch)
tree159bddce73460cfee7899db703654c77edaa16aa
parent3afdfecf7ed6c5cd21837b2354128d107808ca43 (diff)
downloadbusybox-w32-5ba53c05fce018ef4b0d79d942f3a40742304685.tar.gz
busybox-w32-5ba53c05fce018ef4b0d79d942f3a40742304685.tar.bz2
busybox-w32-5ba53c05fce018ef4b0d79d942f3a40742304685.zip
- commentary typos
-rw-r--r--scripts/bb_mkdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/bb_mkdep.c b/scripts/bb_mkdep.c
index d17612b25..ca48c6a28 100644
--- a/scripts/bb_mkdep.c
+++ b/scripts/bb_mkdep.c
@@ -109,7 +109,7 @@ static llist_t *configs; /* list of -c usaged and them stat() after parsed */
109static llist_t *Iop; /* list of -I include usaged */ 109static llist_t *Iop; /* list of -I include usaged */
110 110
111static char *pwd; /* current work directory */ 111static char *pwd; /* current work directory */
112static size_t replace; /* replace current work derectory with build dir */ 112static size_t replace; /* replace current work directory with build dir */
113 113
114static const char *kp; /* KEY path, argument of -k used */ 114static const char *kp; /* KEY path, argument of -k used */
115static size_t kp_len; 115static size_t kp_len;
@@ -1604,7 +1604,7 @@ int main(int argc, char **argv)
1604 llist_t *fl; 1604 llist_t *fl;
1605 1605
1606 { 1606 {
1607 /* for bb_simplify_path, this program has not chdir() */ 1607 /* for bb_simplify_path, this program has no chdir() */
1608 /* libbb-like my xgetcwd() */ 1608 /* libbb-like my xgetcwd() */
1609 unsigned path_max = 512; 1609 unsigned path_max = 512;
1610 1610
@@ -1731,7 +1731,7 @@ static char *bb_simplify_path(const char *path)
1731 if (path[0] == '/') 1731 if (path[0] == '/')
1732 start = bb_xstrdup(path); 1732 start = bb_xstrdup(path);
1733 else { 1733 else {
1734 /* is not libbb, but this program has not chdir() */ 1734 /* is not libbb, but this program has no chdir() */
1735 start = bb_asprint("%s/%s", pwd, path); 1735 start = bb_asprint("%s/%s", pwd, path);
1736 } 1736 }
1737 p = s = start; 1737 p = s = start;