aboutsummaryrefslogtreecommitdiff
path: root/src/regex/regex.c
diff options
context:
space:
mode:
authorgrothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96>2012-06-12 19:07:40 +0000
committergrothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96>2012-06-12 19:07:40 +0000
commitf639eb8eb0795f14eb0f9a51e171fcfcb57cc60a (patch)
treea3a9dcba12ee5356c03056c10b7aba5367b2ef34 /src/regex/regex.c
parent523f09252143b745fee994e7d8a481becfc7ac0a (diff)
-consistently use struct GNUNET_HashCode
git-svn-id: https://gnunet.org/svn/gnunet@21926 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/regex/regex.c')
-rw-r--r--src/regex/regex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regex/regex.c b/src/regex/regex.c
index d697aee89f..80eb01b9c0 100644
--- a/src/regex/regex.c
+++ b/src/regex/regex.c
@@ -192,7 +192,7 @@ struct GNUNET_REGEX_State
/**
* Hash of the state.
*/
- GNUNET_HashCode hash;
+ struct GNUNET_HashCode hash;
/**
* Proof for this state.
@@ -2435,7 +2435,7 @@ GNUNET_REGEX_get_computed_regex (struct GNUNET_REGEX_Automaton *a)
*/
unsigned int
GNUNET_REGEX_get_first_key (const char *input_string, unsigned int string_len,
- GNUNET_HashCode * key)
+ struct GNUNET_HashCode * key)
{
unsigned int size;
@@ -2461,7 +2461,7 @@ GNUNET_REGEX_get_first_key (const char *input_string, unsigned int string_len,
* @return GNUNET_OK if the proof is valid for the given key
*/
int
-GNUNET_REGEX_check_proof (const char *proof, const GNUNET_HashCode * key)
+GNUNET_REGEX_check_proof (const char *proof, const struct GNUNET_HashCode * key)
{
return GNUNET_OK;
}