NAMESTORE/JSON: fix parsing exp and flags
[oweals/gnunet.git] / src / sq / test_sq.c
index 42c321666d3e0afc3f49e7c98a30a536c17fb751..c6711bf0d47a2dee23ea69d2f254e3de154bc2b6 100644 (file)
@@ -2,16 +2,20 @@
   This file is part of GNUnet
   (C) 2015, 2016, 2017 GNUnet e.V.
 
-  GNUnet is free software; you can redistribute it and/or modify it under the
-  terms of the GNU General Public License as published by the Free Software
-  Foundation; either version 3, or (at your option) any later version.
+  GNUnet is free software: you can redistribute it and/or modify it
+  under the terms of the GNU Affero General Public License as published
+  by the Free Software Foundation, either version 3 of the License,
+  or (at your option) any later version.
 
-  GNUnet is distributed in the hope that it will be useful, but WITHOUT ANY
-  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
-  A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+  GNUnet is distributed in the hope that it will be useful, but
+  WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+  Affero General Public License for more details.
+  You should have received a copy of the GNU Affero General Public License
+  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-  You should have received a copy of the GNU General Public License along with
-  GNUnet; see the file COPYING.  If not, If not, see <http://www.gnu.org/licenses/>
+     SPDX-License-Identifier: AGPL3.0-or-later
 */
 /**
  * @file sq/test_sq.c
@@ -253,7 +257,8 @@ main(int argc,
   {
     fprintf (stderr,
             "Failed to create table\n");
-    sqlite3_close (dbh);
+    GNUNET_break (SQLITE_OK ==
+                  sqlite3_close (dbh));
     if (0 != unlink ("test.db"))
       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
                                 "unlink",
@@ -271,7 +276,8 @@ main(int argc,
             "Failed to drop table\n");
     ret = 1;
   }
-  sqlite3_close (dbh);
+  GNUNET_break (SQLITE_OK ==
+                sqlite3_close (dbh));
   if (0 != unlink ("test.db"))
     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
                               "unlink",