openbsd-ports/www/php5/patches/patch-ext_calendar_calendar_c
robert 837cd0d4ce Import php-5.0.2;
PHP5 is a widely-used general-purpose scripting language 
that is especially suited for Web development and can be 
embedded into HTML.
2004-10-02 11:32:35 +00:00

13 lines
473 B
Plaintext

$OpenBSD: patch-ext_calendar_calendar_c,v 1.1.1.1 2004/10/02 11:32:37 robert Exp $
--- ext/calendar/calendar.c.orig Mon Jul 26 23:12:25 2004
+++ ext/calendar/calendar.c Mon Jul 26 23:12:43 2004
@@ -277,7 +277,7 @@
calendar->from_jd(jd, &year, &month, &day);
- sprintf(date, "%i/%i/%i", month, day, year);
+ snprintf(date, sizeof date, "%i/%i/%i", month, day, year);
add_assoc_string(return_value, "date", date, 1);
add_assoc_long(return_value, "month", month);