aboutsummaryrefslogtreecommitdiff
path: root/src/regex/regex.c
diff options
context:
space:
mode:
authorszengel <szengel@140774ce-b5e7-0310-ab8b-a85725594a96>2012-07-02 12:25:52 +0000
committerszengel <szengel@140774ce-b5e7-0310-ab8b-a85725594a96>2012-07-02 12:25:52 +0000
commitf6bee8f543d552249302a90252e331c457e1eb55 (patch)
tree660c1f34d274adc3983ef6f5b1b2e673c79f72b9 /src/regex/regex.c
parent02f3e734359dba2a7b341db6a723818e7d5ecb6b (diff)
removed unnecessary debug statements
git-svn-id: https://gnunet.org/svn/gnunet@22430 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/regex/regex.c')
-rw-r--r--src/regex/regex.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/regex/regex.c b/src/regex/regex.c
index 18f6b60ea3..721fe35596 100644
--- a/src/regex/regex.c
+++ b/src/regex/regex.c
@@ -1103,7 +1103,6 @@ automaton_create_proofs_simplify (char *R_last_ij, char *R_last_ik,
// $R^{(k)}_{ij} = N | R^{(k-1)}_{ik} ( R^{(k-1)}_{kk} )^* R^{(k-1)}_{kj} OR
// $R^{(k)}_{ij} = R^{(k-1)}_{ij} | R^{(k-1)}_{ik} ( R^{(k-1)}_{kk} )^* R^{(k-1)}_{kj}
- /* *R_cur_ij = NULL; */
R_cur_r = NULL;
R_cur_l = NULL;
@@ -1374,9 +1373,6 @@ automaton_create_proofs_simplify (char *R_last_ij, char *R_last_ik,
}
}
- /* GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "R_cur_l: %s\n", R_cur_l); */
- /* GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "R_cur_r: %s\n", R_cur_r); */
-
if (NULL == R_cur_l && NULL == R_cur_r)
{
*R_cur_ij = NULL;
@@ -1395,24 +1391,12 @@ automaton_create_proofs_simplify (char *R_last_ij, char *R_last_ik,
return;
}
- if (R_cur_l[0] == 'C' || R_cur_r[0] == 'C')
- GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "R_cur_l: %s R_cur_r: %s\n", R_cur_l,
- R_cur_r);
-
-
if (0 == nullstrcmp (R_cur_l, R_cur_r))
{
*R_cur_ij = GNUNET_strdup (R_cur_l);
- GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, ">>>>>>>>>>>>>> %s == %s\n", R_cur_l,
- R_cur_r);
return;
}
- /* else */
- /* { */
- /* GNUNET_log (GNUNET_ERROR_TYPE_ERROR, ">>>>>>>>>>>>>> %s != %s\n", R_cur_l, R_cur_r); */
- /* } */
-
GNUNET_asprintf (R_cur_ij, "(%s|%s)", R_cur_l, R_cur_r);
GNUNET_free_non_null (R_cur_l);