-only trigger check config if we actually need it
[oweals/gnunet.git] / src / psycutil / psyc_env.c
index 9c9c1a96dfe85d81e09bb484019f597955ca3775..0d8a4ec69c0d4fe545c0386b4f3fc2b1a4707c05 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * This file is part of GNUnet.
- * Copyright (C) 2013 Christian Grothoff (and other contributing authors)
+ * Copyright (C) 2013 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
@@ -66,8 +66,8 @@ GNUNET_PSYC_env_create ()
  */
 void
 GNUNET_PSYC_env_add (struct GNUNET_PSYC_Environment *env,
-                            enum GNUNET_PSYC_Operator oper, const char *name,
-                            const void *value, size_t value_size)
+                     enum GNUNET_PSYC_Operator oper, const char *name,
+                     const void *value, size_t value_size)
 {
   struct GNUNET_PSYC_Modifier *mod = GNUNET_new (struct GNUNET_PSYC_Modifier);
   mod->oper = oper;
@@ -104,7 +104,7 @@ GNUNET_PSYC_env_tail (const struct GNUNET_PSYC_Environment *env)
  */
 void
 GNUNET_PSYC_env_remove (struct GNUNET_PSYC_Environment *env,
-                               struct GNUNET_PSYC_Modifier *mod)
+                        struct GNUNET_PSYC_Modifier *mod)
 {
   GNUNET_CONTAINER_DLL_remove (env->mod_head, env->mod_tail, mod);
 }
@@ -123,8 +123,8 @@ GNUNET_PSYC_env_remove (struct GNUNET_PSYC_Environment *env,
  */
 int
 GNUNET_PSYC_env_shift (struct GNUNET_PSYC_Environment *env,
-                              enum GNUNET_PSYC_Operator *oper, const char **name,
-                              const void **value, size_t *value_size)
+                       enum GNUNET_PSYC_Operator *oper, const char **name,
+                       const void **value, size_t *value_size)
 {
   if (NULL == env->mod_head)
     return GNUNET_NO;
@@ -152,7 +152,7 @@ GNUNET_PSYC_env_shift (struct GNUNET_PSYC_Environment *env,
  */
 void
 GNUNET_PSYC_env_iterate (const struct GNUNET_PSYC_Environment *env,
-                                GNUNET_PSYC_Iterator it, void *it_cls)
+                         GNUNET_PSYC_Iterator it, void *it_cls)
 {
   struct GNUNET_PSYC_Modifier *mod;
   for (mod = env->mod_head; NULL != mod; mod = mod->next)