]> err.no Git - dpkg/commitdiff
dpkg (1.2.10); priority=MEDIUM
authorIan Jackson <ian@chiark.chu.cam.ac.uk>
Sat, 29 Jun 1996 02:32:45 +0000 (03:32 +0100)
committerIan Jackson <ian@chiark.chu.cam.ac.uk>
Sat, 29 Jun 1996 02:32:45 +0000 (03:32 +0100)
  * Fixed bug in old-style version/revision number parsing.  (Bug#3440.)

 -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 29 Jun 1996 03:32:45 +0100

debian.Changelog
debian.rules
lib/fields.c

index 4edd6ddbac8b7c66ef002078cd1875224741de19..0288642145455a776c7ba439b83cd8bed35bd771 100644 (file)
@@ -1,3 +1,9 @@
+dpkg (1.2.10); priority=MEDIUM
+
+  * Fixed bug in old-style version/revision number parsing.  (Bug#3440.)
+
+ -- Ian Jackson <ian@chiark.chu.cam.ac.uk>  Sat, 29 Jun 1996 03:32:45 +0100
+
 dpkg (1.2.9); priority=MEDIUM
 
   * Fixed status database updates reading bug.
index 1fd69f43fb79129372d71c5f896fe77ede639afd..c2b8c967846ae81e15e17a55a00b08116c060bbe 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/make -f
 
 package=dpkg
-version=1.2.9
+version=1.2.10
 
 archi=$(shell dpkg --print-architecture)
 DIR:=$(shell pwd)
index 103a2275572ea2403e70501ef2661a6508b52b43..a2b26fb8a8467fd136e1e7090ac45237e7d10b75 100644 (file)
@@ -189,6 +189,7 @@ void f_revision(struct pkginfo *pigp, struct pkginfoperfile *pifp,
   if (pifp->version.revision && *pifp->version.revision) {
     newversion= nfmalloc(strlen(pifp->version.version)+strlen(pifp->version.revision)+2);
     sprintf(newversion,"%s-%s",pifp->version.version,pifp->version.revision);
+    pifp->version.version= newversion;
   }
   pifp->version.revision= nfstrsave(value);
 }