Home | History | Annotate | Download | only in utils

Lines Matching defs:len2

312     unsigned  len2;
323 /* check that the parent exists, 'len2' is the length of
325 len2 = len-1;
326 while (len2 > 0 && !ispathsep(path[len2-1]))
327 len2 -= 1;
329 if (len2 > 0) {
330 old_c = path[len2];
331 path[len2] = 0;
335 ret = path_mkdir_recursive( path, len2, mode );
337 path[len2] = old_c;