From: Richard D. <ric...@us...> - 2007-04-06 11:44:01
|
Update of /cvsroot/file-extattr/File-ExtAttr/lib/File In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv16098/lib/File Modified Files: ExtAttr.pm Log Message: Fix warning in listfattr(), listfattrns() -- pass empty string rather than undef; bump version to 1.02 Index: ExtAttr.pm =================================================================== RCS file: /cvsroot/file-extattr/File-ExtAttr/lib/File/ExtAttr.pm,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** ExtAttr.pm 2 Oct 2006 22:20:05 -0000 1.18 --- ExtAttr.pm 6 Apr 2007 11:44:00 -0000 1.19 *************** *** 138,142 **** ); ! our $VERSION = '1.01'; #this is used by getxattr(), needs documentation --- 138,142 ---- ); ! our $VERSION = '1.02'; #this is used by getxattr(), needs documentation *************** *** 201,205 **** C<%flags> allows control of whether the attribute should be created ! or should replace an existing attribute's value. If the key C<create> is true, setfattr will fail if the attribute already exists. If the key C<replace> is true, setfattr will fail if the attribute --- 201,205 ---- C<%flags> allows control of whether the attribute should be created ! or should replace an existing attribute\'s value. If the key C<create> is true, setfattr will fail if the attribute already exists. If the key C<replace> is true, setfattr will fail if the attribute *************** *** 264,268 **** return _is_fh($file) # File handle ! ? _listfattr(undef, $file->fileno(), @_) # Filename : _listfattr($file, -1, @_); --- 264,268 ---- return _is_fh($file) # File handle ! ? _listfattr('', $file->fileno(), @_) # Filename : _listfattr($file, -1, @_); *************** *** 285,289 **** return _is_fh($file) # File handle ! ? _listfattrns(undef, $file->fileno(), @_) # Filename : _listfattrns($file, -1, @_); --- 285,289 ---- return _is_fh($file) # File handle ! ? _listfattrns('', $file->fileno(), @_) # Filename : _listfattrns($file, -1, @_); *************** *** 370,374 **** Copyright (C) 2005 by Kevin M. Goess ! Copyright (C) 2005, 2006 by Richard Dawe This library is free software; you can redistribute it and/or modify --- 370,374 ---- Copyright (C) 2005 by Kevin M. Goess ! Copyright (C) 2005, 2006, 2007 by Richard Dawe This library is free software; you can redistribute it and/or modify |