> + /* skip opening slash */ > + if (*name == '/') > + ++name;
I think skipping all leading '/' is better: for (; *name == '/'; ++name); Jocke _______________________________________________ uClibc mailing list [email protected] http://lists.busybox.net/mailman/listinfo/uclibc
