Commit:    6e23cfeba48cc10fe59d3dacfea90ccb1a2f1dd4
Author:    Anatoliy Belsky <a...@php.net>         Thu, 25 Oct 2012 09:26:44 
+0200
Parents:   a88379e03d806a1218926e9bf2c9bcd74c4124c7
Branches:  PHP-5.3 PHP-5.4 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=6e23cfeba48cc10fe59d3dacfea90ccb1a2f1dd4

Log:
fixed a typo in the error message

Changed paths:
  M  ext/phar/util.c


Diff:
diff --git a/ext/phar/util.c b/ext/phar/util.c
index d456ee3..08faaa6 100644
--- a/ext/phar/util.c
+++ b/ext/phar/util.c
@@ -2157,7 +2157,7 @@ int phar_create_signature(phar_archive_data *phar, 
php_stream *fp, char **signat
                                if (!EVP_SignUpdate(md_ctx, buf, sig_len)) {
                                        efree(sigbuf);
                                        if (error) {
-                                               spprintf(error, 0, "unable to 
to update the openssl signature for phar \"%s\"", phar->fname);
+                                               spprintf(error, 0, "unable to 
update the openssl signature for phar \"%s\"", phar->fname);
                                        }
                                        return FAILURE;
                                }


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to