OBS User unknown 2007-02-05 22:35:53 +00:00 committed by Git OBS Bridge
parent e593b1c902
commit 9e0f7bb264
5 changed files with 36 additions and 23 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b680e8ed9f7b3d340e33975b881e4065fda9788b0974b4ee8f1540ff7cb7931d
size 367812

3
fuse-2.6.3.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c2b18185eaf96ae085470809b6663f27a9b98774ff21df4af5ba28c2d830259e
size 369325

View File

@ -1,15 +0,0 @@
--- lib/fuse.c-dist 2007-01-18 16:32:18.000000000 +0100
+++ lib/fuse.c 2007-01-18 16:36:27.000000000 +0100
@@ -2948,9 +2948,10 @@ static struct fuse *fuse_new_common_comp
struct fuse *f;
struct fuse_args args = FUSE_ARGS_INIT(0, NULL);
+ if (fuse_opt_add_arg(&args, "") == -1)
+ return NULL;
if (opts &&
- (fuse_opt_add_arg(&args, "") == -1 ||
- fuse_opt_add_arg(&args, "-o") == -1 ||
+ (fuse_opt_add_arg(&args, "-o") == -1 ||
fuse_opt_add_arg(&args, opts) == -1)) {
fuse_opt_free_args(&args);
return NULL;

View File

@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Feb 5 18:25:50 CET 2007 - mszeredi@suse.cz
- updated to version 2.6.3:
* fix regression causing an abort during heavy filesystem use
* update author's email
-------------------------------------------------------------------
Tue Jan 30 15:56:22 CET 2007 - tiwai@suse.de
- updated to version 2.6.2:
* fix 64bit compile problems
* fix fuse_teardown problem
* fix unaligned access in file descriptor in libfuse
* fix detection of fuseblk
* fix use after free in fuse_flush
* fix compatible API for opts == NULL
-------------------------------------------------------------------
Thu Jan 18 16:39:47 CET 2007 - tiwai@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package fuse (Version 2.6.1)
# spec file for package fuse (Version 2.6.3)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -12,13 +12,12 @@
Name: fuse
Summary: Userspace File System
Version: 2.6.1
Release: 4
Version: 2.6.3
Release: 1
License: GNU General Public License (GPL), GNU Library General Public License v. 2.0 and 2.1 (LGPL)
Group: System/Filesystems
Source: %{name}-%{version}.tar.bz2
Patch: fuse-install-fix.diff
Patch1: fuse-compat-abort-fix.diff
URL: http://fuse.sf.net
BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: permissions
@ -55,7 +54,6 @@ Authors:
%prep
%setup -q
%patch
%patch1
%{?suse_update_config:%{suse_update_config -f}}
%build
@ -105,6 +103,18 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/pkgconfig/*.pc
%changelog -n fuse
* Mon Feb 05 2007 - mszeredi@suse.cz
- updated to version 2.6.3:
* fix regression causing an abort during heavy filesystem use
* update author's email
* Tue Jan 30 2007 - tiwai@suse.de
- updated to version 2.6.2:
* fix 64bit compile problems
* fix fuse_teardown problem
* fix unaligned access in file descriptor in libfuse
* fix detection of fuseblk
* fix use after free in fuse_flush
* fix compatible API for opts == NULL
* Thu Jan 18 2007 - tiwai@suse.de
- fix compat API (#233870)
* Tue Dec 19 2006 - tiwai@suse.de