From f1ba43deea5e7a1fbc22b429196d1f9fb4e1a9f3 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Tue, 24 Mar 2015 09:36:10 +0000 Subject: -updated french translations --- src/include/gnunet_crypto_lib.h | 18 +++++++++++------- src/transport/gnunet-service-transport_validation.c | 2 +- src/util/plugin.c | 17 ++++++++++------- 3 files changed, 22 insertions(+), 15 deletions(-) (limited to 'src') diff --git a/src/include/gnunet_crypto_lib.h b/src/include/gnunet_crypto_lib.h index 7aedd58a8..ac50685e2 100644 --- a/src/include/gnunet_crypto_lib.h +++ b/src/include/gnunet_crypto_lib.h @@ -1178,6 +1178,10 @@ GNUNET_CRYPTO_ecdsa_key_create_from_file (const char *filename); struct GNUNET_CRYPTO_EddsaPrivateKey * GNUNET_CRYPTO_eddsa_key_create_from_file (const char *filename); + +/** + * Forward declaration to simplify #include-structure. + */ struct GNUNET_CONFIGURATION_Handle; @@ -1679,7 +1683,7 @@ GNUNET_CRYPTO_rsa_blinding_key_free (struct GNUNET_CRYPTO_rsa_BlindingKey *bkey) */ size_t GNUNET_CRYPTO_rsa_blinding_key_encode (const struct GNUNET_CRYPTO_rsa_BlindingKey *bkey, - char **buffer); + char **buffer); /** @@ -1692,7 +1696,7 @@ GNUNET_CRYPTO_rsa_blinding_key_encode (const struct GNUNET_CRYPTO_rsa_BlindingKe */ struct GNUNET_CRYPTO_rsa_BlindingKey * GNUNET_CRYPTO_rsa_blinding_key_decode (const char *buf, - size_t len); + size_t len); /** @@ -1706,9 +1710,9 @@ GNUNET_CRYPTO_rsa_blinding_key_decode (const char *buf, */ size_t GNUNET_CRYPTO_rsa_blind (const struct GNUNET_HashCode *hash, - struct GNUNET_CRYPTO_rsa_BlindingKey *bkey, - struct GNUNET_CRYPTO_rsa_PublicKey *pkey, - char **buffer); + struct GNUNET_CRYPTO_rsa_BlindingKey *bkey, + struct GNUNET_CRYPTO_rsa_PublicKey *pkey, + char **buffer); /** @@ -1721,8 +1725,8 @@ GNUNET_CRYPTO_rsa_blind (const struct GNUNET_HashCode *hash, */ struct GNUNET_CRYPTO_rsa_Signature * GNUNET_CRYPTO_rsa_sign (const struct GNUNET_CRYPTO_rsa_PrivateKey *key, - const void *msg, - size_t msg_len); + const void *msg, + size_t msg_len); /** diff --git a/src/transport/gnunet-service-transport_validation.c b/src/transport/gnunet-service-transport_validation.c index ccd077aab..7dfe28ae8 100644 --- a/src/transport/gnunet-service-transport_validation.c +++ b/src/transport/gnunet-service-transport_validation.c @@ -1482,7 +1482,7 @@ GST_validation_handle_pong (const struct GNUNET_PeerIdentity *sender, ve->expecting_pong = GNUNET_NO; ve->valid_until = GNUNET_TIME_relative_to_absolute (HELLO_ADDRESS_EXPIRATION); ve->pong_sig_cache = pong->signature; - ve->pong_sig_valid_until = GNUNET_TIME_absolute_ntoh (pong->expiration); + ve->pong_sig_valid_until = GNUNET_TIME_absolute_ntoh (pong->expiration); ve->latency = GNUNET_TIME_absolute_get_duration (ve->send_time); { if (GNUNET_YES == ve->known_to_ats) diff --git a/src/util/plugin.c b/src/util/plugin.c index 18a90b6c3..c88ab8791 100644 --- a/src/util/plugin.c +++ b/src/util/plugin.c @@ -57,7 +57,6 @@ struct PluginList */ static int initialized; - /** * Libtool search path before we started. */ @@ -89,12 +88,12 @@ plugin_init () return; } opath = lt_dlgetsearchpath (); - if (opath != NULL) + if (NULL != opath) old_dlsearchpath = GNUNET_strdup (opath); path = GNUNET_OS_installation_get_path (GNUNET_OS_IPK_LIBDIR); - if (path != NULL) + if (NULL != path) { - if (opath != NULL) + if (NULL != opath) { GNUNET_asprintf (&cpath, "%s:%s", opath, path); lt_dlsetsearchpath (cpath); @@ -117,7 +116,7 @@ static void plugin_fini () { lt_dlsetsearchpath (old_dlsearchpath); - if (old_dlsearchpath != NULL) + if (NULL != old_dlsearchpath) { GNUNET_free (old_dlsearchpath); old_dlsearchpath = NULL; @@ -134,12 +133,16 @@ plugin_fini () * @return NULL if the symbol was not found */ static GNUNET_PLUGIN_Callback -resolve_function (struct PluginList *plug, const char *name) +resolve_function (struct PluginList *plug, + const char *name) { char *initName; void *mptr; - GNUNET_asprintf (&initName, "_%s_%s", plug->name, name); + GNUNET_asprintf (&initName, + "_%s_%s", + plug->name, + name); mptr = lt_dlsym (plug->handle, &initName[1]); if (NULL == mptr) mptr = lt_dlsym (plug->handle, initName); -- cgit v1.2.3