Please sponsor pmount upload
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
pmount (Ubuntu) |
Invalid
|
Undecided
|
Unassigned |
Bug Description
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
affects distros/
subscribe ubuntu-
diff -u cupsys-
- --- cupsys-
+++ cupsys-
@@ -42,6 +42,7 @@
-rm config.log config.h config.cache config.status Makedefs cups.sh
-rmdir --ignore-
-rm -f doc/es/index.html doc/ja/index.html man/client.conf.man man/cups-
+ -rm backend/*.o
common-
(cd fonts && $(MAKE) install BUILDROOT=
diff -u cupsys-
- --- cupsys-
+++ cupsys-
@@ -1,3 +1,14 @@
+cupsys (1.2.1-0ubuntu2) dapper-updates; urgency=low
+
+ * Add debian/
+ - Fix for 11.22.33.* network masks (STR #1769), Closes: LP#52390
+ * Fixed debian/
+ - Don't create .rej files
+ * Fixed debian/rules
+ - Delete backend/*.o on clean
+
+ -- Ante Karamatic <email address hidden> Sun, 9 Jul 2006 08:05:12 +0200
+
cupsys (1.2.1-0ubuntu1) dapper-updates; urgency=low
* Upgrade to new upstream version 1.2.1 (backported from edgy):
diff -u cupsys-
- --- cupsys-
+++ cupsys-
@@ -20,21 +19,0 @@
- -diff -urNad cupsys-
- ---- cupsys-
- -+++ cupsys-
- -@@ -0,0 +1,17 @@
- -+***************
- -+*** 77,83 ****
- -+ $(INSTALL_BIN) lp $(BINDIR)
- -+ $(INSTALL_BIN) lpoptions $(BINDIR)
- -+ $(INSTALL_BIN) lpstat $(BINDIR)
- -+- $(INSTALL_BIN) -m 4755 -o $(CUPS_USER) -g $(CUPS_GROUP) lppasswd $(BINDIR) || $(INSTALL_BIN) lppasswd $(BINDIR)
- -+
- -+
- -+ #
- -+--- 77,83 ----
- -+ $(INSTALL_BIN) lp $(BINDIR)
- -+ $(INSTALL_BIN) lpoptions $(BINDIR)
- -+ $(INSTALL_BIN) lpstat $(BINDIR)
- -++ $(INSTALL_BIN) -m 4755 -o lp -g root lppasswd $(BINDIR) || $(INSTALL_BIN) lppasswd $(BINDIR)
- -+
- -+
- -+ #
diff -u cupsys-
- --- cupsys-
+++ cupsys-
@@ -1,4 +1,5 @@
00_r5643.dpatch
+00_r5660.dpatch
02_configure.
#03_manext.dpatch
03_clean.dpatch
only in patch2:
unchanged:
- --- cupsys-
+++ cupsys-
@@ -0,0 +1,47 @@
+#! /bin/sh /usr/share/
+## 00_r5660.dpatch by Ante Karamatic <email address hidden>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+@DPATCH@
+--- cupsys-
++++ cupsys-
+@@ -1356,12 +1356,34 @@
+ * Parse dotted-decimal IPv4 address...
+ */
+
++ unsigned val[4]; /* IPv4 address values */
++
++
+ family = AF_INET;
+- ipcount = sscanf(value, "%u.%u.%u.%u", ip + 0, ip + 1, ip + 2, ip + 3);
++ ipcount = sscanf(value, "%u.%u.%u.%u", val + 0, val + 1, val + 2, val + 3);
+
+- ip[3] |= ((((ip[0] << 8) | ip[1]) << 8) | ip[2]) << 8;
+- ip[0] = ip[1] = ip[2] = 0;
++ /*
++ * Range check the IP numbers...
++ */
+
++ for (i = 0; i < ipcount; i ++)
++ if (val[i] > 255)
++ return (0);
++
++ /*
++ * Make sure the trailing values are zeroed, as some C libraries like
++ * glibc apparently like to fill the unused arguments with garbage...
++ */
++
++ for (i = ipcount; i < 4; i ++)
++ val[i] = 0;
++
++ /*
++ * Merge everything into a 32-bit IPv4 address in ip[3]...
++ */
++
++ ip[3] = (((((val[0] << 8) | val[1]) << 8) | val[2]) << 8) | val[3];
++
+ if (ipcount < 4)
+ mask[3] = (0xffffffff << (32 - 8 * ipcount)) & 0xffffffff;
+ }
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (GNU/Linux)
iD8DBQFE01KsDec
7UUtWFn+
=r5yS
-----END PGP SIGNATURE-----
another test, please ignore