hholzgra Fri Sep 26 03:50:02 2003 EDT
Modified files:
/php-src/ext/yp yp.c
Log:
error message was missing an argument
Index: php-src/ext/yp/yp.c
diff -u php-src/ext/yp/yp.c:1.39 php-src/ext/yp/yp.c:1.40
--- php-src/ext/yp/yp.c:1.39 Sat Jul 19 15:23:33 2003
+++ php-src/ext/yp/yp.c Fri Sep 26 03:50:01 2003
@@ -16,7 +16,7 @@
| Fredrik Ohrn |
+----------------------------------------------------------------------+
*/
-/* $Id: yp.c,v 1.39 2003/07/19 19:23:33 andrey Exp $ */
+/* $Id: yp.c,v 1.40 2003/09/26 07:50:01 hholzgra Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -302,7 +302,7 @@
add_assoc_stringl_ex((zval *) indata, key, inkeylen+1,
inval, invallen, 1);
efree(key);
} else {
- php_error(E_WARNING, "Can't allocate %d bytes for key
buffer in yp_cat()");
+ php_error(E_WARNING, "Can't allocate %d bytes for key
buffer in yp_cat()"), inkeylen+1;
}
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php