Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:9637 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 26144 invoked by uid 1010); 2 May 2004 18:11:34 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 25504 invoked from network); 2 May 2004 18:11:30 -0000 Received: from unknown (HELO mail.gmx.net) (213.165.64.20) by pb1.pair.com with SMTP; 2 May 2004 18:11:30 -0000 Received: (qmail 22585 invoked by uid 65534); 2 May 2004 18:11:29 -0000 Received: from p508407CA.dip0.t-ipconnect.de (EHLO p508407ca.dip0.t-ipconnect.de) (80.132.7.202) by mail.gmx.net (mp013) with SMTP; 02 May 2004 20:11:29 +0200 X-Authenticated: #3444402 To: internals@lists.php.net Date: Sun, 2 May 2004 20:12:23 +0200 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Message-ID: <200405022012.24137.holliwell@gmx.net> Content-Type: Multipart/Mixed; boundary="Boundary-00=_HoTlAMKqGijktkN" Subject: [PATCH] proto fixes uuencode From: holliwell@gmx.net (Friedhelm Betz) --Boundary-00=_HoTlAMKqGijktkN Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, attached patch fixes the protos for uuenode/uudecode in php-src/ext/standard/uuencode.c Regards Friedhelm --Boundary-00=_HoTlAMKqGijktkN Content-Type: text/plain; charset="utf-8"; name="uuencode.c.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="uuencode.c.txt" Index: uuencode.c =================================================================== RCS file: /repository/php-src/ext/standard/uuencode.c,v retrieving revision 1.3 diff -u -u -r1.3 uuencode.c --- uuencode.c 8 Jan 2004 08:17:35 -0000 1.3 +++ uuencode.c 2 May 2004 16:19:41 -0000 @@ -170,8 +170,8 @@ return total_len; } -/* {{{ proto string uuencode(string data) - uuencode a string */ +/* {{{ proto string convert_uuencode(string data) + Uuencode a string */ PHP_FUNCTION(convert_uuencode) { char *src, *dst; @@ -187,8 +187,8 @@ } /* }}} */ -/* {{{ proto string uudecode(string data) - decode a uuencoded string */ +/* {{{ proto string convert_uudecode(string data) + Decode a uuencoded string */ PHP_FUNCTION(convert_uudecode) { char *src, *dst; --Boundary-00=_HoTlAMKqGijktkN--