summaryrefslogtreecommitdiff
path: root/ext/mcrypt/mcrypt.c
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2001-12-13 21:12:53 +0000
committerDerick Rethans <derick@php.net>2001-12-13 21:12:53 +0000
commitcf8c1ef7b4869cdf3beeb632f30c29d75db30706 (patch)
tree3d1a98aca0cee39159b97ee9d66adc0fadfef89f /ext/mcrypt/mcrypt.c
parent0adf145a9f7a977d38f0ed470ea5dbe045103d4c (diff)
downloadphp-git-cf8c1ef7b4869cdf3beeb632f30c29d75db30706.tar.gz
- Remove debug stuff
Diffstat (limited to 'ext/mcrypt/mcrypt.c')
-rw-r--r--ext/mcrypt/mcrypt.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/mcrypt/mcrypt.c b/ext/mcrypt/mcrypt.c
index fcfba3211c..b42bad8fec 100644
--- a/ext/mcrypt/mcrypt.c
+++ b/ext/mcrypt/mcrypt.c
@@ -531,7 +531,6 @@ PHP_FUNCTION(mcrypt_generic)
if (mcrypt_enc_is_block_mode (td) == 1) { /* It's a block algorithm */
block_size = mcrypt_enc_get_block_size (td);
data_size = (((Z_STRLEN_PP(data) - 1) / block_size) + 1) * block_size;
- printf ("strlen(data): %lu; data size: %lu\n", Z_STRLEN_PP(data), data_size);
data_s = emalloc (data_size + 1);
memset (data_s, 0, data_size);
memcpy (data_s, Z_STRVAL_PP(data), Z_STRLEN_PP(data));