]> pere.pagekite.me Git - homepage.git/commitdiff
Generated.
authorPetter Reinholdtsen <pere@hungry.com>
Sun, 8 Aug 2010 22:22:43 +0000 (22:22 +0000)
committerPetter Reinholdtsen <pere@hungry.com>
Sun, 8 Aug 2010 22:22:43 +0000 (22:22 +0000)
blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html
blog/archive/2010/08/08.rss
blog/archive/2010/08/index.html
blog/index.html
blog/index.rss
blog/tags/debian edu/debian edu.rss
blog/tags/debian edu/index.html
blog/tags/english/english.rss
blog/tags/english/index.html
blog/tags/nuug/index.html
blog/tags/nuug/nuug.rss

index dddfc4985da66e097994b10c272b36c77a6254e9..9e2ee5fe2b0355c40f6bbc9fb9f655331765525d 100644 (file)
@@ -59,24 +59,24 @@ help you find your way out again.  This is the fs-test.c source:</p>
 
 #define _GNU_SOURCE /* for asprintf() */
 
 
 #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.
 
 #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) {
 #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
  * 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
  * 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;
  */
 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");
   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",
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf("  error: Unable to create directory '%s': %s\n",
index ed25f5e20f5c5eaf3cc3ed24a7efb8b394359f4d..585a0b050b382d9bcc6d6b9c38eb2bdf00bb3345 100644 (file)
@@ -150,24 +150,24 @@ help you find your way out again.  This is the fs-test.c source:&lt;/p&gt;
 
 #define _GNU_SOURCE /* for asprintf() */
 
 
 #define _GNU_SOURCE /* for asprintf() */
 
-#include &lt;errno.h&gt;
-#include &lt;fcntl.h&gt;
-#include &lt;stdio.h&gt;
-#include &lt;string.h&gt;
-#include &lt;stdlib.h&gt;
-#include &lt;sys/file.h&gt;
-#include &lt;sys/stat.h&gt;
-#include &lt;sys/types.h&gt;
-#include &lt;unistd.h&gt;
+#include &amp;lt;errno.h&gt;
+#include &amp;lt;fcntl.h&gt;
+#include &amp;lt;stdio.h&gt;
+#include &amp;lt;string.h&gt;
+#include &amp;lt;stdlib.h&gt;
+#include &amp;lt;sys/file.h&gt;
+#include &amp;lt;sys/stat.h&gt;
+#include &amp;lt;sys/types.h&gt;
+#include &amp;lt;unistd.h&gt;
 
 #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.
 
 #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 &lt;URL: http://www.sqlite.org./faq.html#q5 &gt;.
+ * See also &amp;lt;URL: http://www.sqlite.org./faq.html#q5 &gt;.
  */
  */
-#include &lt;sqlite3.h&gt;
+#include &amp;lt;sqlite3.h&gt;
 #define CREATE_TABLE_USERS                                              \
   &quot;CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); &quot;
 int test_sqlite_open(void) {
 #define CREATE_TABLE_USERS                                              \
   &quot;CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); &quot;
 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
  * work with ext3, but not with cifs server on Windows 2003.  This is
  * done in the sqlite3 library.
  * See also
- * &lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html&gt; and the
+ * &amp;lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html&gt; and the
  * POSIX specification
  * POSIX specification
- * &lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html&gt;.
+ * &amp;lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html&gt;.
  */
 int test_gcompris_locking(void) {
   struct flock fl;
  */
 int test_gcompris_locking(void) {
   struct flock fl;
@@ -264,7 +264,7 @@ int test_subdirectory_creation(void) {
   char *dirs[LEVELS];
   int level;
   printf(&quot;info: testing subdirectory creation\n&quot;);
   char *dirs[LEVELS];
   int level;
   printf(&quot;info: testing subdirectory creation\n&quot;);
-  for (level = 0; level &lt; LEVELS; level++) {
+  for (level = 0; level &amp;lt; LEVELS; level++) {
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf(&quot;  error: Unable to create directory &#39;%s&#39;: %s\n&quot;,
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf(&quot;  error: Unable to create directory &#39;%s&#39;: %s\n&quot;,
index d4c4b2c20e8b1657ae62647f5adb8945f87e68ba..a7a068cec38bd5ae46e3418ade5a23c205a05028 100644 (file)
@@ -194,24 +194,24 @@ help you find your way out again.  This is the fs-test.c source:</p>
 
 #define _GNU_SOURCE /* for asprintf() */
 
 
 #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.
 
 #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) {
 #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
  * 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
  * 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;
  */
 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");
   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",
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf("  error: Unable to create directory '%s': %s\n",
index 9ab7bd1c926dc5df43a11bb70852045d818633a1..4f0a93f00b89ec5e766033174003e1d413bd350c 100644 (file)
@@ -62,24 +62,24 @@ help you find your way out again.  This is the fs-test.c source:</p>
 
 #define _GNU_SOURCE /* for asprintf() */
 
 
 #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.
 
 #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) {
 #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
  * 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
  * 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;
  */
 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");
   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",
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf("  error: Unable to create directory '%s': %s\n",
index 4541e6eaad1487651ed01d255fc470b7c07cf185..38857dcdbdc6cb2faf3752fb57998e4b43dcedd5 100644 (file)
@@ -51,24 +51,24 @@ help you find your way out again.  This is the fs-test.c source:&lt;/p&gt;
 
 #define _GNU_SOURCE /* for asprintf() */
 
 
 #define _GNU_SOURCE /* for asprintf() */
 
-#include &lt;errno.h&gt;
-#include &lt;fcntl.h&gt;
-#include &lt;stdio.h&gt;
-#include &lt;string.h&gt;
-#include &lt;stdlib.h&gt;
-#include &lt;sys/file.h&gt;
-#include &lt;sys/stat.h&gt;
-#include &lt;sys/types.h&gt;
-#include &lt;unistd.h&gt;
+#include &amp;lt;errno.h&gt;
+#include &amp;lt;fcntl.h&gt;
+#include &amp;lt;stdio.h&gt;
+#include &amp;lt;string.h&gt;
+#include &amp;lt;stdlib.h&gt;
+#include &amp;lt;sys/file.h&gt;
+#include &amp;lt;sys/stat.h&gt;
+#include &amp;lt;sys/types.h&gt;
+#include &amp;lt;unistd.h&gt;
 
 #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.
 
 #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 &lt;URL: http://www.sqlite.org./faq.html#q5 &gt;.
+ * See also &amp;lt;URL: http://www.sqlite.org./faq.html#q5 &gt;.
  */
  */
-#include &lt;sqlite3.h&gt;
+#include &amp;lt;sqlite3.h&gt;
 #define CREATE_TABLE_USERS                                              \
   &quot;CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); &quot;
 int test_sqlite_open(void) {
 #define CREATE_TABLE_USERS                                              \
   &quot;CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); &quot;
 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
  * work with ext3, but not with cifs server on Windows 2003.  This is
  * done in the sqlite3 library.
  * See also
- * &lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html&gt; and the
+ * &amp;lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html&gt; and the
  * POSIX specification
  * POSIX specification
- * &lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html&gt;.
+ * &amp;lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html&gt;.
  */
 int test_gcompris_locking(void) {
   struct flock fl;
  */
 int test_gcompris_locking(void) {
   struct flock fl;
@@ -165,7 +165,7 @@ int test_subdirectory_creation(void) {
   char *dirs[LEVELS];
   int level;
   printf(&quot;info: testing subdirectory creation\n&quot;);
   char *dirs[LEVELS];
   int level;
   printf(&quot;info: testing subdirectory creation\n&quot;);
-  for (level = 0; level &lt; LEVELS; level++) {
+  for (level = 0; level &amp;lt; LEVELS; level++) {
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf(&quot;  error: Unable to create directory &#39;%s&#39;: %s\n&quot;,
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf(&quot;  error: Unable to create directory &#39;%s&#39;: %s\n&quot;,
index 782b504f0b8c885b10fe80e24e52d8babecccb4e..d45bd075faac2926cf63c0a65cb141fa266236b6 100644 (file)
@@ -2478,24 +2478,24 @@ help you find your way out again.  This is the fs-test.c source:&lt;/p&gt;
 
 #define _GNU_SOURCE /* for asprintf() */
 
 
 #define _GNU_SOURCE /* for asprintf() */
 
-#include &lt;errno.h&gt;
-#include &lt;fcntl.h&gt;
-#include &lt;stdio.h&gt;
-#include &lt;string.h&gt;
-#include &lt;stdlib.h&gt;
-#include &lt;sys/file.h&gt;
-#include &lt;sys/stat.h&gt;
-#include &lt;sys/types.h&gt;
-#include &lt;unistd.h&gt;
+#include &amp;lt;errno.h&gt;
+#include &amp;lt;fcntl.h&gt;
+#include &amp;lt;stdio.h&gt;
+#include &amp;lt;string.h&gt;
+#include &amp;lt;stdlib.h&gt;
+#include &amp;lt;sys/file.h&gt;
+#include &amp;lt;sys/stat.h&gt;
+#include &amp;lt;sys/types.h&gt;
+#include &amp;lt;unistd.h&gt;
 
 #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.
 
 #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 &lt;URL: http://www.sqlite.org./faq.html#q5 &gt;.
+ * See also &amp;lt;URL: http://www.sqlite.org./faq.html#q5 &gt;.
  */
  */
-#include &lt;sqlite3.h&gt;
+#include &amp;lt;sqlite3.h&gt;
 #define CREATE_TABLE_USERS                                              \
   &quot;CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); &quot;
 int test_sqlite_open(void) {
 #define CREATE_TABLE_USERS                                              \
   &quot;CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); &quot;
 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
  * work with ext3, but not with cifs server on Windows 2003.  This is
  * done in the sqlite3 library.
  * See also
- * &lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html&gt; and the
+ * &amp;lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html&gt; and the
  * POSIX specification
  * POSIX specification
- * &lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html&gt;.
+ * &amp;lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html&gt;.
  */
 int test_gcompris_locking(void) {
   struct flock fl;
  */
 int test_gcompris_locking(void) {
   struct flock fl;
@@ -2592,7 +2592,7 @@ int test_subdirectory_creation(void) {
   char *dirs[LEVELS];
   int level;
   printf(&quot;info: testing subdirectory creation\n&quot;);
   char *dirs[LEVELS];
   int level;
   printf(&quot;info: testing subdirectory creation\n&quot;);
-  for (level = 0; level &lt; LEVELS; level++) {
+  for (level = 0; level &amp;lt; LEVELS; level++) {
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf(&quot;  error: Unable to create directory &#39;%s&#39;: %s\n&quot;,
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf(&quot;  error: Unable to create directory &#39;%s&#39;: %s\n&quot;,
index f458704f5e031157994da668ea14624cb2a9ffb6..f5851be91626385a92e7c393d513844a089f5c01 100644 (file)
@@ -2991,24 +2991,24 @@ help you find your way out again.  This is the fs-test.c source:</p>
 
 #define _GNU_SOURCE /* for asprintf() */
 
 
 #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.
 
 #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) {
 #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
  * 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
  * 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;
  */
 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");
   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",
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf("  error: Unable to create directory '%s': %s\n",
index 6d127930df0618406930b6db26dbebefef473d67..b3c6bfae1cd1504356b51d4e88facb03114264c5 100644 (file)
@@ -3192,24 +3192,24 @@ help you find your way out again.  This is the fs-test.c source:&lt;/p&gt;
 
 #define _GNU_SOURCE /* for asprintf() */
 
 
 #define _GNU_SOURCE /* for asprintf() */
 
-#include &lt;errno.h&gt;
-#include &lt;fcntl.h&gt;
-#include &lt;stdio.h&gt;
-#include &lt;string.h&gt;
-#include &lt;stdlib.h&gt;
-#include &lt;sys/file.h&gt;
-#include &lt;sys/stat.h&gt;
-#include &lt;sys/types.h&gt;
-#include &lt;unistd.h&gt;
+#include &amp;lt;errno.h&gt;
+#include &amp;lt;fcntl.h&gt;
+#include &amp;lt;stdio.h&gt;
+#include &amp;lt;string.h&gt;
+#include &amp;lt;stdlib.h&gt;
+#include &amp;lt;sys/file.h&gt;
+#include &amp;lt;sys/stat.h&gt;
+#include &amp;lt;sys/types.h&gt;
+#include &amp;lt;unistd.h&gt;
 
 #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.
 
 #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 &lt;URL: http://www.sqlite.org./faq.html#q5 &gt;.
+ * See also &amp;lt;URL: http://www.sqlite.org./faq.html#q5 &gt;.
  */
  */
-#include &lt;sqlite3.h&gt;
+#include &amp;lt;sqlite3.h&gt;
 #define CREATE_TABLE_USERS                                              \
   &quot;CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); &quot;
 int test_sqlite_open(void) {
 #define CREATE_TABLE_USERS                                              \
   &quot;CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); &quot;
 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
  * work with ext3, but not with cifs server on Windows 2003.  This is
  * done in the sqlite3 library.
  * See also
- * &lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html&gt; and the
+ * &amp;lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html&gt; and the
  * POSIX specification
  * POSIX specification
- * &lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html&gt;.
+ * &amp;lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html&gt;.
  */
 int test_gcompris_locking(void) {
   struct flock fl;
  */
 int test_gcompris_locking(void) {
   struct flock fl;
@@ -3306,7 +3306,7 @@ int test_subdirectory_creation(void) {
   char *dirs[LEVELS];
   int level;
   printf(&quot;info: testing subdirectory creation\n&quot;);
   char *dirs[LEVELS];
   int level;
   printf(&quot;info: testing subdirectory creation\n&quot;);
-  for (level = 0; level &lt; LEVELS; level++) {
+  for (level = 0; level &amp;lt; LEVELS; level++) {
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf(&quot;  error: Unable to create directory &#39;%s&#39;: %s\n&quot;,
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf(&quot;  error: Unable to create directory &#39;%s&#39;: %s\n&quot;,
index 562f3c3bef8a0e1835402bfd6bfe4486c9e501fc..07c67b4897c6530e4e5d2d8c6b66726d14808750 100644 (file)
@@ -3900,24 +3900,24 @@ help you find your way out again.  This is the fs-test.c source:</p>
 
 #define _GNU_SOURCE /* for asprintf() */
 
 
 #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.
 
 #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) {
 #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
  * 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
  * 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;
  */
 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");
   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",
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf("  error: Unable to create directory '%s': %s\n",
index 2ef7d7678b9ae48423bd2fd2aa797e0d0dea613a..1265416c82728b9b61d443a730d14d5ebb29db07 100644 (file)
@@ -5523,24 +5523,24 @@ help you find your way out again.  This is the fs-test.c source:</p>
 
 #define _GNU_SOURCE /* for asprintf() */
 
 
 #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.
 
 #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) {
 #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
  * 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
  * 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;
  */
 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");
   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",
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf("  error: Unable to create directory '%s': %s\n",
index f4c790ca3c45ac2336ee81dabf4ac8db9a8df5ab..958f75dcfb5d2149e40b94a668051f9ef1b5de43 100644 (file)
@@ -4334,24 +4334,24 @@ help you find your way out again.  This is the fs-test.c source:&lt;/p&gt;
 
 #define _GNU_SOURCE /* for asprintf() */
 
 
 #define _GNU_SOURCE /* for asprintf() */
 
-#include &lt;errno.h&gt;
-#include &lt;fcntl.h&gt;
-#include &lt;stdio.h&gt;
-#include &lt;string.h&gt;
-#include &lt;stdlib.h&gt;
-#include &lt;sys/file.h&gt;
-#include &lt;sys/stat.h&gt;
-#include &lt;sys/types.h&gt;
-#include &lt;unistd.h&gt;
+#include &amp;lt;errno.h&gt;
+#include &amp;lt;fcntl.h&gt;
+#include &amp;lt;stdio.h&gt;
+#include &amp;lt;string.h&gt;
+#include &amp;lt;stdlib.h&gt;
+#include &amp;lt;sys/file.h&gt;
+#include &amp;lt;sys/stat.h&gt;
+#include &amp;lt;sys/types.h&gt;
+#include &amp;lt;unistd.h&gt;
 
 #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.
 
 #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 &lt;URL: http://www.sqlite.org./faq.html#q5 &gt;.
+ * See also &amp;lt;URL: http://www.sqlite.org./faq.html#q5 &gt;.
  */
  */
-#include &lt;sqlite3.h&gt;
+#include &amp;lt;sqlite3.h&gt;
 #define CREATE_TABLE_USERS                                              \
   &quot;CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); &quot;
 int test_sqlite_open(void) {
 #define CREATE_TABLE_USERS                                              \
   &quot;CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); &quot;
 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
  * work with ext3, but not with cifs server on Windows 2003.  This is
  * done in the sqlite3 library.
  * See also
- * &lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html&gt; and the
+ * &amp;lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html&gt; and the
  * POSIX specification
  * POSIX specification
- * &lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html&gt;.
+ * &amp;lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html&gt;.
  */
 int test_gcompris_locking(void) {
   struct flock fl;
  */
 int test_gcompris_locking(void) {
   struct flock fl;
@@ -4448,7 +4448,7 @@ int test_subdirectory_creation(void) {
   char *dirs[LEVELS];
   int level;
   printf(&quot;info: testing subdirectory creation\n&quot;);
   char *dirs[LEVELS];
   int level;
   printf(&quot;info: testing subdirectory creation\n&quot;);
-  for (level = 0; level &lt; LEVELS; level++) {
+  for (level = 0; level &amp;lt; LEVELS; level++) {
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf(&quot;  error: Unable to create directory &#39;%s&#39;: %s\n&quot;,
     char *newpath = NULL;
     if (-1 == mkdir(path, 0777)) {
       printf(&quot;  error: Unable to create directory &#39;%s&#39;: %s\n&quot;,