From: Petter Reinholdtsen Date: Sun, 8 Aug 2010 22:22:43 +0000 (+0000) Subject: Generated. X-Git-Url: https://pere.pagekite.me/gitweb/homepage.git/commitdiff_plain/b57eb9c7caad39a795dc603797272d7c644f2730 Generated. --- diff --git a/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html b/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html index dddfc4985d..9e2ee5fe2b 100644 --- a/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html +++ b/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html @@ -59,24 +59,24 @@ help you find your way out again. This is the fs-test.c source:

#define _GNU_SOURCE /* for asprintf() */ -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include <errno.h> +#include <fcntl.h> +#include <stdio.h> +#include <string.h> +#include <stdlib.h> +#include <sys/file.h> +#include <sys/stat.h> +#include <sys/types.h> +#include <unistd.h> #ifdef TEST_SQLITE /* * Test sqlite open, as done by gcompris require the libsqlite3-dev * package and linking with -lsqlite3. A more low level test is * below. - * See also . + * See also <URL: http://www.sqlite.org./faq.html#q5 >. */ -#include +#include <sqlite3.h> #define CREATE_TABLE_USERS \ "CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); " int test_sqlite_open(void) { @@ -109,9 +109,9 @@ int test_sqlite_open(void) { * work with ext3, but not with cifs server on Windows 2003. This is * done in the sqlite3 library. * See also - * and the + * <URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the * POSIX specification - * . + * <URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. */ int test_gcompris_locking(void) { struct flock fl; @@ -173,7 +173,7 @@ int test_subdirectory_creation(void) { char *dirs[LEVELS]; int level; printf("info: testing subdirectory creation\n"); - for (level = 0; level < LEVELS; level++) { + for (level = 0; level < LEVELS; level++) { char *newpath = NULL; if (-1 == mkdir(path, 0777)) { printf(" error: Unable to create directory '%s': %s\n", diff --git a/blog/archive/2010/08/08.rss b/blog/archive/2010/08/08.rss index ed25f5e20f..585a0b050b 100644 --- a/blog/archive/2010/08/08.rss +++ b/blog/archive/2010/08/08.rss @@ -150,24 +150,24 @@ help you find your way out again. This is the fs-test.c source:</p> #define _GNU_SOURCE /* for asprintf() */ -#include <errno.h> -#include <fcntl.h> -#include <stdio.h> -#include <string.h> -#include <stdlib.h> -#include <sys/file.h> -#include <sys/stat.h> -#include <sys/types.h> -#include <unistd.h> +#include &lt;errno.h> +#include &lt;fcntl.h> +#include &lt;stdio.h> +#include &lt;string.h> +#include &lt;stdlib.h> +#include &lt;sys/file.h> +#include &lt;sys/stat.h> +#include &lt;sys/types.h> +#include &lt;unistd.h> #ifdef TEST_SQLITE /* * Test sqlite open, as done by gcompris require the libsqlite3-dev * package and linking with -lsqlite3. A more low level test is * below. - * See also <URL: http://www.sqlite.org./faq.html#q5 >. + * See also &lt;URL: http://www.sqlite.org./faq.html#q5 >. */ -#include <sqlite3.h> +#include &lt;sqlite3.h> #define CREATE_TABLE_USERS \ "CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); " int test_sqlite_open(void) { @@ -200,9 +200,9 @@ int test_sqlite_open(void) { * work with ext3, but not with cifs server on Windows 2003. This is * done in the sqlite3 library. * See also - * <URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the + * &lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the * POSIX specification - * <URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. + * &lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. */ int test_gcompris_locking(void) { struct flock fl; @@ -264,7 +264,7 @@ int test_subdirectory_creation(void) { char *dirs[LEVELS]; int level; printf("info: testing subdirectory creation\n"); - for (level = 0; level < LEVELS; level++) { + for (level = 0; level &lt; LEVELS; level++) { char *newpath = NULL; if (-1 == mkdir(path, 0777)) { printf(" error: Unable to create directory '%s': %s\n", diff --git a/blog/archive/2010/08/index.html b/blog/archive/2010/08/index.html index d4c4b2c20e..a7a068cec3 100644 --- a/blog/archive/2010/08/index.html +++ b/blog/archive/2010/08/index.html @@ -194,24 +194,24 @@ help you find your way out again. This is the fs-test.c source:

#define _GNU_SOURCE /* for asprintf() */ -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include <errno.h> +#include <fcntl.h> +#include <stdio.h> +#include <string.h> +#include <stdlib.h> +#include <sys/file.h> +#include <sys/stat.h> +#include <sys/types.h> +#include <unistd.h> #ifdef TEST_SQLITE /* * Test sqlite open, as done by gcompris require the libsqlite3-dev * package and linking with -lsqlite3. A more low level test is * below. - * See also . + * See also <URL: http://www.sqlite.org./faq.html#q5 >. */ -#include +#include <sqlite3.h> #define CREATE_TABLE_USERS \ "CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); " int test_sqlite_open(void) { @@ -244,9 +244,9 @@ int test_sqlite_open(void) { * work with ext3, but not with cifs server on Windows 2003. This is * done in the sqlite3 library. * See also - * and the + * <URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the * POSIX specification - * . + * <URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. */ int test_gcompris_locking(void) { struct flock fl; @@ -308,7 +308,7 @@ int test_subdirectory_creation(void) { char *dirs[LEVELS]; int level; printf("info: testing subdirectory creation\n"); - for (level = 0; level < LEVELS; level++) { + for (level = 0; level < LEVELS; level++) { char *newpath = NULL; if (-1 == mkdir(path, 0777)) { printf(" error: Unable to create directory '%s': %s\n", diff --git a/blog/index.html b/blog/index.html index 9ab7bd1c92..4f0a93f00b 100644 --- a/blog/index.html +++ b/blog/index.html @@ -62,24 +62,24 @@ help you find your way out again. This is the fs-test.c source:

#define _GNU_SOURCE /* for asprintf() */ -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include <errno.h> +#include <fcntl.h> +#include <stdio.h> +#include <string.h> +#include <stdlib.h> +#include <sys/file.h> +#include <sys/stat.h> +#include <sys/types.h> +#include <unistd.h> #ifdef TEST_SQLITE /* * Test sqlite open, as done by gcompris require the libsqlite3-dev * package and linking with -lsqlite3. A more low level test is * below. - * See also . + * See also <URL: http://www.sqlite.org./faq.html#q5 >. */ -#include +#include <sqlite3.h> #define CREATE_TABLE_USERS \ "CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); " int test_sqlite_open(void) { @@ -112,9 +112,9 @@ int test_sqlite_open(void) { * work with ext3, but not with cifs server on Windows 2003. This is * done in the sqlite3 library. * See also - * and the + * <URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the * POSIX specification - * . + * <URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. */ int test_gcompris_locking(void) { struct flock fl; @@ -176,7 +176,7 @@ int test_subdirectory_creation(void) { char *dirs[LEVELS]; int level; printf("info: testing subdirectory creation\n"); - for (level = 0; level < LEVELS; level++) { + for (level = 0; level < LEVELS; level++) { char *newpath = NULL; if (-1 == mkdir(path, 0777)) { printf(" error: Unable to create directory '%s': %s\n", diff --git a/blog/index.rss b/blog/index.rss index 4541e6eaad..38857dcdbd 100644 --- a/blog/index.rss +++ b/blog/index.rss @@ -51,24 +51,24 @@ help you find your way out again. This is the fs-test.c source:</p> #define _GNU_SOURCE /* for asprintf() */ -#include <errno.h> -#include <fcntl.h> -#include <stdio.h> -#include <string.h> -#include <stdlib.h> -#include <sys/file.h> -#include <sys/stat.h> -#include <sys/types.h> -#include <unistd.h> +#include &lt;errno.h> +#include &lt;fcntl.h> +#include &lt;stdio.h> +#include &lt;string.h> +#include &lt;stdlib.h> +#include &lt;sys/file.h> +#include &lt;sys/stat.h> +#include &lt;sys/types.h> +#include &lt;unistd.h> #ifdef TEST_SQLITE /* * Test sqlite open, as done by gcompris require the libsqlite3-dev * package and linking with -lsqlite3. A more low level test is * below. - * See also <URL: http://www.sqlite.org./faq.html#q5 >. + * See also &lt;URL: http://www.sqlite.org./faq.html#q5 >. */ -#include <sqlite3.h> +#include &lt;sqlite3.h> #define CREATE_TABLE_USERS \ "CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); " int test_sqlite_open(void) { @@ -101,9 +101,9 @@ int test_sqlite_open(void) { * work with ext3, but not with cifs server on Windows 2003. This is * done in the sqlite3 library. * See also - * <URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the + * &lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the * POSIX specification - * <URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. + * &lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. */ int test_gcompris_locking(void) { struct flock fl; @@ -165,7 +165,7 @@ int test_subdirectory_creation(void) { char *dirs[LEVELS]; int level; printf("info: testing subdirectory creation\n"); - for (level = 0; level < LEVELS; level++) { + for (level = 0; level &lt; LEVELS; level++) { char *newpath = NULL; if (-1 == mkdir(path, 0777)) { printf(" error: Unable to create directory '%s': %s\n", diff --git a/blog/tags/debian edu/debian edu.rss b/blog/tags/debian edu/debian edu.rss index 782b504f0b..d45bd075fa 100644 --- a/blog/tags/debian edu/debian edu.rss +++ b/blog/tags/debian edu/debian edu.rss @@ -2478,24 +2478,24 @@ help you find your way out again. This is the fs-test.c source:</p> #define _GNU_SOURCE /* for asprintf() */ -#include <errno.h> -#include <fcntl.h> -#include <stdio.h> -#include <string.h> -#include <stdlib.h> -#include <sys/file.h> -#include <sys/stat.h> -#include <sys/types.h> -#include <unistd.h> +#include &lt;errno.h> +#include &lt;fcntl.h> +#include &lt;stdio.h> +#include &lt;string.h> +#include &lt;stdlib.h> +#include &lt;sys/file.h> +#include &lt;sys/stat.h> +#include &lt;sys/types.h> +#include &lt;unistd.h> #ifdef TEST_SQLITE /* * Test sqlite open, as done by gcompris require the libsqlite3-dev * package and linking with -lsqlite3. A more low level test is * below. - * See also <URL: http://www.sqlite.org./faq.html#q5 >. + * See also &lt;URL: http://www.sqlite.org./faq.html#q5 >. */ -#include <sqlite3.h> +#include &lt;sqlite3.h> #define CREATE_TABLE_USERS \ "CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); " int test_sqlite_open(void) { @@ -2528,9 +2528,9 @@ int test_sqlite_open(void) { * work with ext3, but not with cifs server on Windows 2003. This is * done in the sqlite3 library. * See also - * <URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the + * &lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the * POSIX specification - * <URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. + * &lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. */ int test_gcompris_locking(void) { struct flock fl; @@ -2592,7 +2592,7 @@ int test_subdirectory_creation(void) { char *dirs[LEVELS]; int level; printf("info: testing subdirectory creation\n"); - for (level = 0; level < LEVELS; level++) { + for (level = 0; level &lt; LEVELS; level++) { char *newpath = NULL; if (-1 == mkdir(path, 0777)) { printf(" error: Unable to create directory '%s': %s\n", diff --git a/blog/tags/debian edu/index.html b/blog/tags/debian edu/index.html index f458704f5e..f5851be916 100644 --- a/blog/tags/debian edu/index.html +++ b/blog/tags/debian edu/index.html @@ -2991,24 +2991,24 @@ help you find your way out again. This is the fs-test.c source:

#define _GNU_SOURCE /* for asprintf() */ -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include <errno.h> +#include <fcntl.h> +#include <stdio.h> +#include <string.h> +#include <stdlib.h> +#include <sys/file.h> +#include <sys/stat.h> +#include <sys/types.h> +#include <unistd.h> #ifdef TEST_SQLITE /* * Test sqlite open, as done by gcompris require the libsqlite3-dev * package and linking with -lsqlite3. A more low level test is * below. - * See also . + * See also <URL: http://www.sqlite.org./faq.html#q5 >. */ -#include +#include <sqlite3.h> #define CREATE_TABLE_USERS \ "CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); " int test_sqlite_open(void) { @@ -3041,9 +3041,9 @@ int test_sqlite_open(void) { * work with ext3, but not with cifs server on Windows 2003. This is * done in the sqlite3 library. * See also - * and the + * <URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the * POSIX specification - * . + * <URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. */ int test_gcompris_locking(void) { struct flock fl; @@ -3105,7 +3105,7 @@ int test_subdirectory_creation(void) { char *dirs[LEVELS]; int level; printf("info: testing subdirectory creation\n"); - for (level = 0; level < LEVELS; level++) { + for (level = 0; level < LEVELS; level++) { char *newpath = NULL; if (-1 == mkdir(path, 0777)) { printf(" error: Unable to create directory '%s': %s\n", diff --git a/blog/tags/english/english.rss b/blog/tags/english/english.rss index 6d127930df..b3c6bfae1c 100644 --- a/blog/tags/english/english.rss +++ b/blog/tags/english/english.rss @@ -3192,24 +3192,24 @@ help you find your way out again. This is the fs-test.c source:</p> #define _GNU_SOURCE /* for asprintf() */ -#include <errno.h> -#include <fcntl.h> -#include <stdio.h> -#include <string.h> -#include <stdlib.h> -#include <sys/file.h> -#include <sys/stat.h> -#include <sys/types.h> -#include <unistd.h> +#include &lt;errno.h> +#include &lt;fcntl.h> +#include &lt;stdio.h> +#include &lt;string.h> +#include &lt;stdlib.h> +#include &lt;sys/file.h> +#include &lt;sys/stat.h> +#include &lt;sys/types.h> +#include &lt;unistd.h> #ifdef TEST_SQLITE /* * Test sqlite open, as done by gcompris require the libsqlite3-dev * package and linking with -lsqlite3. A more low level test is * below. - * See also <URL: http://www.sqlite.org./faq.html#q5 >. + * See also &lt;URL: http://www.sqlite.org./faq.html#q5 >. */ -#include <sqlite3.h> +#include &lt;sqlite3.h> #define CREATE_TABLE_USERS \ "CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); " int test_sqlite_open(void) { @@ -3242,9 +3242,9 @@ int test_sqlite_open(void) { * work with ext3, but not with cifs server on Windows 2003. This is * done in the sqlite3 library. * See also - * <URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the + * &lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the * POSIX specification - * <URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. + * &lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. */ int test_gcompris_locking(void) { struct flock fl; @@ -3306,7 +3306,7 @@ int test_subdirectory_creation(void) { char *dirs[LEVELS]; int level; printf("info: testing subdirectory creation\n"); - for (level = 0; level < LEVELS; level++) { + for (level = 0; level &lt; LEVELS; level++) { char *newpath = NULL; if (-1 == mkdir(path, 0777)) { printf(" error: Unable to create directory '%s': %s\n", diff --git a/blog/tags/english/index.html b/blog/tags/english/index.html index 562f3c3bef..07c67b4897 100644 --- a/blog/tags/english/index.html +++ b/blog/tags/english/index.html @@ -3900,24 +3900,24 @@ help you find your way out again. This is the fs-test.c source:

#define _GNU_SOURCE /* for asprintf() */ -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include <errno.h> +#include <fcntl.h> +#include <stdio.h> +#include <string.h> +#include <stdlib.h> +#include <sys/file.h> +#include <sys/stat.h> +#include <sys/types.h> +#include <unistd.h> #ifdef TEST_SQLITE /* * Test sqlite open, as done by gcompris require the libsqlite3-dev * package and linking with -lsqlite3. A more low level test is * below. - * See also . + * See also <URL: http://www.sqlite.org./faq.html#q5 >. */ -#include +#include <sqlite3.h> #define CREATE_TABLE_USERS \ "CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); " int test_sqlite_open(void) { @@ -3950,9 +3950,9 @@ int test_sqlite_open(void) { * work with ext3, but not with cifs server on Windows 2003. This is * done in the sqlite3 library. * See also - * and the + * <URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the * POSIX specification - * . + * <URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. */ int test_gcompris_locking(void) { struct flock fl; @@ -4014,7 +4014,7 @@ int test_subdirectory_creation(void) { char *dirs[LEVELS]; int level; printf("info: testing subdirectory creation\n"); - for (level = 0; level < LEVELS; level++) { + for (level = 0; level < LEVELS; level++) { char *newpath = NULL; if (-1 == mkdir(path, 0777)) { printf(" error: Unable to create directory '%s': %s\n", diff --git a/blog/tags/nuug/index.html b/blog/tags/nuug/index.html index 2ef7d7678b..1265416c82 100644 --- a/blog/tags/nuug/index.html +++ b/blog/tags/nuug/index.html @@ -5523,24 +5523,24 @@ help you find your way out again. This is the fs-test.c source:

#define _GNU_SOURCE /* for asprintf() */ -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include <errno.h> +#include <fcntl.h> +#include <stdio.h> +#include <string.h> +#include <stdlib.h> +#include <sys/file.h> +#include <sys/stat.h> +#include <sys/types.h> +#include <unistd.h> #ifdef TEST_SQLITE /* * Test sqlite open, as done by gcompris require the libsqlite3-dev * package and linking with -lsqlite3. A more low level test is * below. - * See also . + * See also <URL: http://www.sqlite.org./faq.html#q5 >. */ -#include +#include <sqlite3.h> #define CREATE_TABLE_USERS \ "CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); " int test_sqlite_open(void) { @@ -5573,9 +5573,9 @@ int test_sqlite_open(void) { * work with ext3, but not with cifs server on Windows 2003. This is * done in the sqlite3 library. * See also - * and the + * <URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the * POSIX specification - * . + * <URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. */ int test_gcompris_locking(void) { struct flock fl; @@ -5637,7 +5637,7 @@ int test_subdirectory_creation(void) { char *dirs[LEVELS]; int level; printf("info: testing subdirectory creation\n"); - for (level = 0; level < LEVELS; level++) { + for (level = 0; level < LEVELS; level++) { char *newpath = NULL; if (-1 == mkdir(path, 0777)) { printf(" error: Unable to create directory '%s': %s\n", diff --git a/blog/tags/nuug/nuug.rss b/blog/tags/nuug/nuug.rss index f4c790ca3c..958f75dcfb 100644 --- a/blog/tags/nuug/nuug.rss +++ b/blog/tags/nuug/nuug.rss @@ -4334,24 +4334,24 @@ help you find your way out again. This is the fs-test.c source:</p> #define _GNU_SOURCE /* for asprintf() */ -#include <errno.h> -#include <fcntl.h> -#include <stdio.h> -#include <string.h> -#include <stdlib.h> -#include <sys/file.h> -#include <sys/stat.h> -#include <sys/types.h> -#include <unistd.h> +#include &lt;errno.h> +#include &lt;fcntl.h> +#include &lt;stdio.h> +#include &lt;string.h> +#include &lt;stdlib.h> +#include &lt;sys/file.h> +#include &lt;sys/stat.h> +#include &lt;sys/types.h> +#include &lt;unistd.h> #ifdef TEST_SQLITE /* * Test sqlite open, as done by gcompris require the libsqlite3-dev * package and linking with -lsqlite3. A more low level test is * below. - * See also <URL: http://www.sqlite.org./faq.html#q5 >. + * See also &lt;URL: http://www.sqlite.org./faq.html#q5 >. */ -#include <sqlite3.h> +#include &lt;sqlite3.h> #define CREATE_TABLE_USERS \ "CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); " int test_sqlite_open(void) { @@ -4384,9 +4384,9 @@ int test_sqlite_open(void) { * work with ext3, but not with cifs server on Windows 2003. This is * done in the sqlite3 library. * See also - * <URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the + * &lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html> and the * POSIX specification - * <URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. + * &lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html>. */ int test_gcompris_locking(void) { struct flock fl; @@ -4448,7 +4448,7 @@ int test_subdirectory_creation(void) { char *dirs[LEVELS]; int level; printf("info: testing subdirectory creation\n"); - for (level = 0; level < LEVELS; level++) { + for (level = 0; level &lt; LEVELS; level++) { char *newpath = NULL; if (-1 == mkdir(path, 0777)) { printf(" error: Unable to create directory '%s': %s\n",