libbb: move nuke_str() from passwd into libbb
[oweals/busybox.git] / libbb / xgetcwd.c
index 10febe32d44c8964b6e11e299357ab67a14aaff6..71720d323f0b1c2a2e5821c20e623da4dd5c0305 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Special function for busybox written by Vladimir Oleynik <dzo@simtreas.ru>
  *
- * Licensed under GPLv2, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2, see file LICENSE in this source tree.
  */
 
 #include "libbb.h"
@@ -24,7 +24,7 @@ xrealloc_getcwd_or_warn(char *cwd)
        char *ret;
        unsigned path_max;
 
-       path_max = 128; /* 128 + 64 should be enough for 99% of cases */
+       path_max = 128; /* 128 + 64 should be enough for 99% of cases */
 
        while (1) {
                path_max += PATH_INCR;