-/* $OpenBSD: mkdir.c,v 1.6 2021/03/29 04:01:17 tb Exp $ */
+/* $OpenBSD: mkdir.c,v 1.7 2021/05/06 17:25:45 claudio Exp $ */
/*
* Copyright (c) 1983, 1992, 1993
/*
* mkpath -- create directories.
- * path - path
- * mode - file mode of terminal directory
- * dir_mode - file mode of intermediate directories
+ * dir - path to create directories for
*/
int
mkpath(const char *dir)
return -1;
slash = path;
+
for (;;) {
slash += strspn(slash, "/");
slash += strcspn(slash, "/");