Mailinglist Archive: opensuse-commit (1945 mails)
| < Previous | Next > |
commit e2fsprogs
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Mon, 03 Nov 2008 01:00:32 +0100
- Message-id: <20081103000033.05EBC6780AA@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package e2fsprogs
checked in at Mon Nov 3 01:00:32 CET 2008.
--------
--- e2fsprogs/e2fsprogs.changes 2008-10-07 14:43:13.000000000 +0200
+++ /mounts/work_src_done/STABLE/e2fsprogs/e2fsprogs.changes 2008-10-28
12:43:06.000000000 +0100
@@ -1,0 +2,5 @@
+Tue Oct 28 12:41:54 CET 2008 - mkoenig@xxxxxxx
+
+- fix function signature to avoid compiler warning [bnc#439129]
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
New:
----
e2fsprogs-1.41.1-function_signature_fix.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ e2fsprogs.spec ++++++
--- /var/tmp/diff_new_pack.d27409/_old 2008-11-03 01:00:07.000000000 +0100
+++ /var/tmp/diff_new_pack.d27409/_new 2008-11-03 01:00:07.000000000 +0100
@@ -27,7 +27,7 @@
PreReq: %install_info_prereq
AutoReqProv: on
Version: 1.41.1
-Release: 10
+Release: 11
Summary: Utilities for the Second Extended File System
Url: http://e2fsprogs.sourceforge.net
Source: %{name}-%{version}.tar.bz2
@@ -45,6 +45,7 @@
Patch6: e2fsprogs-1.41.1-link_fix.patch
Patch7: e2fsprogs-1.41.1-splash_support.patch
Patch8: e2fsprogs-1.41.1-e2fsck_fix_automatic_blocksize_detection.patch
+Patch9: e2fsprogs-1.41.1-function_signature_fix.patch
# libcom_err patches
# 66534 - [SL 10.0] et_list handling of krb5 and libcom_err.so.2 conflict
Patch31: libcom_err-no-init_error_table.patch
@@ -249,6 +250,7 @@
%patch6 -p1
%patch7 -p1
%patch8 -p1
+%patch9 -p1
# libcom_err patches
%patch31 -p1
%patch32 -p1
@@ -470,6 +472,8 @@
%{_mandir}/man3/com_err.3.gz
%changelog
+* Tue Oct 28 2008 mkoenig@xxxxxxx
+- fix function signature to avoid compiler warning [bnc#439129]
* Tue Oct 07 2008 mkoenig@xxxxxxx
- e2fsck: fix e2fsck automatic blocksize detetion
* Mon Sep 29 2008 mkoenig@xxxxxxx
@@ -974,7 +978,7 @@
- fix install_info --delete call and move from preun to postun
* Fri Feb 07 2003 ro@xxxxxxx
- added install_info macros
-* Wed Oct 02 2002 garloff@xxxxxxx
+* Tue Oct 01 2002 garloff@xxxxxxx
- Fix segfault in display of real device in presence of volume
name. #20422
* Tue Sep 03 2002 mls@xxxxxxx
@@ -995,7 +999,7 @@
from util-linux:mount)
* Sun Jul 28 2002 kukuk@xxxxxxx
- Remove unused tetex from neededforbuild
-* Sat Jul 20 2002 olh@xxxxxxx
+* Fri Jul 19 2002 olh@xxxxxxx
- use a better method for finding missed filelist entries
* Fri Apr 12 2002 sf@xxxxxxx
- added %%{_libdir}
++++++ e2fsprogs-1.41.1-function_signature_fix.patch ++++++
Index: e2fsprogs-1.41.1/lib/ext2fs/alloc.c
===================================================================
--- e2fsprogs-1.41.1.orig/lib/ext2fs/alloc.c 2008-08-28 16:39:14.000000000
+0200
+++ e2fsprogs-1.41.1/lib/ext2fs/alloc.c 2008-10-28 11:28:34.000000000 +0100
@@ -29,7 +29,7 @@
/*
* Check for uninit block bitmaps and deal with them appropriately
*/
-static check_block_uninit(ext2_filsys fs, ext2fs_block_bitmap map,
+static void check_block_uninit(ext2_filsys fs, ext2fs_block_bitmap map,
dgrp_t group)
{
int i;
@@ -75,7 +75,7 @@ static check_block_uninit(ext2_filsys fs
/*
* Check for uninit inode bitmaps and deal with them appropriately
*/
-static check_inode_uninit(ext2_filsys fs, ext2fs_inode_bitmap map,
+static void check_inode_uninit(ext2_filsys fs, ext2fs_inode_bitmap map,
dgrp_t group)
{
int i;
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |