rpms/bzip2/devel bzip2-1.0.4-bzip2recover.patch, 1.1, 1.2 bzip2.spec, 1.23, 1.24

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Mon Feb 5 12:07:01 UTC 2007


Author: varekova

Update of /cvs/dist/rpms/bzip2/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv32078

Modified Files:
	bzip2-1.0.4-bzip2recover.patch bzip2.spec 
Log Message:
fix -1 problem


bzip2-1.0.4-bzip2recover.patch:
 bzip2recover.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)

Index: bzip2-1.0.4-bzip2recover.patch
===================================================================
RCS file: /cvs/dist/rpms/bzip2/devel/bzip2-1.0.4-bzip2recover.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bzip2-1.0.4-bzip2recover.patch	5 Feb 2007 11:12:02 -0000	1.1
+++ bzip2-1.0.4-bzip2recover.patch	5 Feb 2007 12:06:55 -0000	1.2
@@ -6,7 +6,7 @@
  
 -   strcpy ( progName, argv[0] );
 +   strncpy ( progName, argv[0], BZ_MAX_FILENAME-1);
-+   progName[BZ_MAX_FILENAME]="\0";
++   progName[BZ_MAX_FILENAME-1]="\0";
     inFileName[0] = outFileName[0] = 0;
  
     fprintf ( stderr, 


Index: bzip2.spec
===================================================================
RCS file: /cvs/dist/rpms/bzip2/devel/bzip2.spec,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- bzip2.spec	5 Feb 2007 11:12:02 -0000	1.23
+++ bzip2.spec	5 Feb 2007 12:06:55 -0000	1.24
@@ -1,7 +1,7 @@
 Summary: A file compression utility
 Name: bzip2
 Version: 1.0.4
-Release: 2%{?dist}
+Release: 3%{?dist}
 License: BSD
 Group: Applications/File
 URL: http://sources.redhat.com/bzip2/
@@ -105,7 +105,7 @@
 %{_libdir}/*so
 
 %changelog
-* Mon Feb  5 2007 Ivana Varekova <varekova at redhat.com> 1.0.4-2
+* Mon Feb  5 2007 Ivana Varekova <varekova at redhat.com> 1.0.4-3
 - Resolves: 226979 
   Buffer overflow in bzip2's bzip2recover
 




More information about the fedora-cvs-commits mailing list