cups 1.1.23: fix strftime seg fault issue
authorCliff Brake <cbrake@bec-systems.com>
Sat, 27 May 2006 15:13:05 +0000 (15:13 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Sat, 27 May 2006 15:13:05 +0000 (15:13 +0000)
  - when strftime is called w/ a NULL format string, it is segfaulting
    in glibc
  - integrate code from latest cups svn to fix

packages/cups/cups-1.1.23/.mtn2git_empty [new file with mode: 0644]
packages/cups/cups-1.1.23/strftime_fix.patch [new file with mode: 0644]
packages/cups/cups_1.1.23.bb

diff --git a/packages/cups/cups-1.1.23/.mtn2git_empty b/packages/cups/cups-1.1.23/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/cups/cups-1.1.23/strftime_fix.patch b/packages/cups/cups-1.1.23/strftime_fix.patch
new file mode 100644 (file)
index 0000000..81f224f
--- /dev/null
@@ -0,0 +1,26 @@
+Index: cups-1.1.23/scheduler/classes.c
+===================================================================
+--- cups-1.1.23.orig/scheduler/classes.c
++++ cups-1.1.23/scheduler/classes.c
+@@ -622,7 +622,7 @@ SaveAllClasses(void)
+   curtime = time(NULL);
+   curdate = localtime(&curtime);
+-  strftime(temp, sizeof(temp) - 1, CUPS_STRFTIME_FORMAT, curdate);
++  strftime(temp, sizeof(temp) - 1, "%Y-%m-%d %H:%M", curdate);
+   cupsFilePuts(fp, "# Class configuration file for " CUPS_SVERSION "\n");
+   cupsFilePrintf(fp, "# Written by cupsd on %s\n", temp);
+Index: cups-1.1.23/scheduler/printers.c
+===================================================================
+--- cups-1.1.23.orig/scheduler/printers.c
++++ cups-1.1.23/scheduler/printers.c
+@@ -1066,7 +1066,7 @@ SaveAllPrinters(void)
+   curtime = time(NULL);
+   curdate = localtime(&curtime);
+-  strftime(temp, sizeof(temp) - 1, CUPS_STRFTIME_FORMAT, curdate);
++  strftime(temp, sizeof(temp) - 1, "%Y-%m-%d %H:%M", curdate);
+   cupsFilePuts(fp, "# Printer configuration file for " CUPS_SVERSION "\n");
+   cupsFilePrintf(fp, "# Written by cupsd on %s\n", temp);
index 2fa5178..936b92b 100644 (file)
@@ -3,7 +3,10 @@ DESCRIPTION = "An Internet printing system for Unix."
 SECTION = "console/utils"
 LICENSE = "GPL LGPL"
 
-SRC_URI = "ftp://ftp.easysw.com/pub/cups/${PV}/cups-${PV}-source.tar.bz2"
+PR = "r1"
+
+SRC_URI = "ftp://ftp.easysw.com/pub/cups/${PV}/cups-${PV}-source.tar.bz2 \
+           file://strftime_fix.patch;patch=1"
 
 inherit autotools binconfig