rpms/coreutils/devel coreutils-no-sign-extend.patch, 1.1, 1.2 coreutils.spec, 1.74, 1.75

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Thu Jun 16 13:45:29 UTC 2005


Author: twaugh

Update of /cvs/dist/rpms/coreutils/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv8991

Modified Files:
	coreutils-no-sign-extend.patch coreutils.spec 
Log Message:
* Thu Jun 16 2005 Tim Waugh <twaugh at redhat.com>
- Better hostid fix.


coreutils-no-sign-extend.patch:
 hostid.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

Index: coreutils-no-sign-extend.patch
===================================================================
RCS file: /cvs/dist/rpms/coreutils/devel/coreutils-no-sign-extend.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- coreutils-no-sign-extend.patch	16 Jun 2005 10:59:11 -0000	1.1
+++ coreutils-no-sign-extend.patch	16 Jun 2005 13:45:25 -0000	1.2
@@ -5,7 +5,7 @@
  
    id = gethostid ();
 -  printf ("%lx\n", id);
-+  printf ("%8x\n", id);
++  printf ("%x\n", id);
  
    exit (EXIT_SUCCESS);
  }


Index: coreutils.spec
===================================================================
RCS file: /cvs/dist/rpms/coreutils/devel/coreutils.spec,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- coreutils.spec	16 Jun 2005 12:05:21 -0000	1.74
+++ coreutils.spec	16 Jun 2005 13:45:25 -0000	1.75
@@ -252,6 +252,9 @@
 /sbin/runuser
 
 %changelog
+* Thu Jun 16 2005 Tim Waugh <twaugh at redhat.com>
+- Better hostid fix.
+
 * Thu Jun 16 2005 Tim Waugh <twaugh at redhat.com> 5.2.1-50
 - Don't display the sign-extended part of the host id (bug #160078).
 




More information about the fedora-cvs-commits mailing list