summaryrefslogtreecommitdiffstats
path: root/php/environs/lasso_identity.c
diff options
context:
space:
mode:
authorChristophe Nowicki <cnowicki@easter-eggs.com>2004-08-12 16:09:32 +0000
committerChristophe Nowicki <cnowicki@easter-eggs.com>2004-08-12 16:09:32 +0000
commitf82f883008bf770a56f94f2d19ab7ce2998a5392 (patch)
tree6ca66dda91422ccd7874f19be5b7f3242d325296 /php/environs/lasso_identity.c
parent043c47a5b2e3b17f5fbebaea27172f8a877a7870 (diff)
downloadlasso-f82f883008bf770a56f94f2d19ab7ce2998a5392.tar.gz
lasso-f82f883008bf770a56f94f2d19ab7ce2998a5392.tar.xz
lasso-f82f883008bf770a56f94f2d19ab7ce2998a5392.zip
remove all debug messages.
Diffstat (limited to 'php/environs/lasso_identity.c')
-rw-r--r--php/environs/lasso_identity.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/php/environs/lasso_identity.c b/php/environs/lasso_identity.c
index 4c25c209..539a8928 100644
--- a/php/environs/lasso_identity.c
+++ b/php/environs/lasso_identity.c
@@ -37,7 +37,7 @@
PHP_FUNCTION(lasso_identity_new) {
LassoIdentity *identity;
- zend_printf("DEBUG: lasso_identity_new\n");
+
identity = lasso_identity_new();
@@ -51,7 +51,7 @@ PHP_FUNCTION(lasso_identity_destroy) {
LassoIdentity *identity;
zval *param;
- zend_printf("DEBUG: lasso_identity_destroy\n");
+
int num_args;
@@ -64,7 +64,6 @@ PHP_FUNCTION(lasso_identity_destroy) {
ZEND_FETCH_RESOURCE(identity, LassoIdentity *, &param, -1, le_lassoidentity_name, le_lassoidentity);
- zend_printf("DEBUG: identity at 0x%p\n", identity);
lasso_identity_destroy(identity);
@@ -80,7 +79,7 @@ PHP_FUNCTION(lasso_identity_dump) {
int num_args;
- zend_printf("DEBUG: lasso_identity_dump\n");
+
if ((num_args = ZEND_NUM_ARGS()) != 1)
WRONG_PARAM_COUNT
@@ -91,8 +90,6 @@ PHP_FUNCTION(lasso_identity_dump) {
ZEND_FETCH_RESOURCE(identity, LassoIdentity *, &param, -1, le_lassoidentity_name, le_lassoidentity);
- zend_printf("DEBUG: identity at 0x%p\n", identity);
-
identity_dump = lasso_identity_dump(identity);
RETURN_STRING(identity_dump, 1);