uncrustify as demanded.
[oweals/gnunet.git] / src / pq / pq_exec.c
index 99eb2b270607ff58923587592275148f231bb4aa..6c8002aff2b8c30b488ee4f27babc9c1bdd4781d 100644 (file)
@@ -1,22 +1,22 @@
 /*
-  This file is part of GNUnet
-  Copyright (C) 2017 GNUnet e.V.
+   This file is part of GNUnet
+   Copyright (C) 2017 GNUnet e.V.
 
-  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 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
-  Affero 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 Affero General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
      SPDX-License-Identifier: AGPL3.0-or-later
-*/
+ */
 /**
  * @file pq/pq_exec.c
  * @brief functions to execute plain SQL statements (PostGres)
@@ -34,7 +34,7 @@
  * @return initialized struct
  */
 struct GNUNET_PQ_ExecuteStatement
-GNUNET_PQ_make_execute (const char *sql)
+GNUNET_PQ_make_execute(const char *sql)
 {
   struct GNUNET_PQ_ExecuteStatement es = {
     .sql = sql,
@@ -53,7 +53,7 @@ GNUNET_PQ_make_execute (const char *sql)
  * @return initialized struct
  */
 struct GNUNET_PQ_ExecuteStatement
-GNUNET_PQ_make_try_execute (const char *sql)
+GNUNET_PQ_make_try_execute(const char *sql)
 {
   struct GNUNET_PQ_ExecuteStatement es = {
     .sql = sql,
@@ -74,38 +74,38 @@ GNUNET_PQ_make_try_execute (const char *sql)
  *         #GNUNET_SYSERR on error
  */
 int
-GNUNET_PQ_exec_statements (PGconn *connection,
-                           const struct GNUNET_PQ_ExecuteStatement *es)
+GNUNET_PQ_exec_statements(PGconn *connection,
+                          const struct GNUNET_PQ_ExecuteStatement *es)
 {
-  for (unsigned int i=0; NULL != es[i].sql; i++)
-  {
-    PGresult *result;
-
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "Running statement `%s' on %p\n",
-                es[i].sql,
-                connection);
-    result = PQexec (connection,
-                     es[i].sql);
-    if ( (GNUNET_NO == es[i].ignore_errors) &&
-         (PGRES_COMMAND_OK != PQresultStatus (result)) )
+  for (unsigned int i = 0; NULL != es[i].sql; i++)
     {
-      GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR,
-                       "pq",
-                       "Failed to execute `%s': %s/%s/%s/%s/%s",
-                       es[i].sql,
-                       PQresultErrorField (result,
-                                           PG_DIAG_MESSAGE_PRIMARY),
-                       PQresultErrorField (result,
-                                           PG_DIAG_MESSAGE_DETAIL),
-                       PQresultErrorMessage (result),
-                       PQresStatus (PQresultStatus (result)),
-                       PQerrorMessage (connection));
-      PQclear (result);
-      return GNUNET_SYSERR;
+      PGresult *result;
+
+      GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
+                 "Running statement `%s' on %p\n",
+                 es[i].sql,
+                 connection);
+      result = PQexec(connection,
+                      es[i].sql);
+      if ((GNUNET_NO == es[i].ignore_errors) &&
+          (PGRES_COMMAND_OK != PQresultStatus(result)))
+        {
+          GNUNET_log_from(GNUNET_ERROR_TYPE_ERROR,
+                          "pq",
+                          "Failed to execute `%s': %s/%s/%s/%s/%s",
+                          es[i].sql,
+                          PQresultErrorField(result,
+                                             PG_DIAG_MESSAGE_PRIMARY),
+                          PQresultErrorField(result,
+                                             PG_DIAG_MESSAGE_DETAIL),
+                          PQresultErrorMessage(result),
+                          PQresStatus(PQresultStatus(result)),
+                          PQerrorMessage(connection));
+          PQclear(result);
+          return GNUNET_SYSERR;
+        }
+      PQclear(result);
     }
-    PQclear (result);
-  }
   return GNUNET_OK;
 }