[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r14131 - trunk/subversion/libsvn_fs_fs

From: Brian W. Fitzpatrick <fitz_at_collab.net>
Date: 2005-04-12 17:05:37 CEST

On Mon, 2005-04-11 at 17:36 -0500, kfogel@tigris.org wrote:
> Author: kfogel
> Date: Mon Apr 11 17:36:51 2005
> New Revision: 14131
>
> Modified:
> trunk/subversion/libsvn_fs_fs/fs_fs.c
> Log:
> Follow up to r13387, on Greg Hudson's advice:
>
> * subversion/libsvn_fs_fs/fs_fs.c
> (svn_fs_fs__open): Don't try to create the FS format file if none
> exists, just assume format 1.
>
>
> Modified: trunk/subversion/libsvn_fs_fs/fs_fs.c
> Url: http://svn.collab.net/viewcvs/svn/trunk/subversion/libsvn_fs_fs/fs_fs.c?view=diff&rev=14131&p1=trunk/subversion/libsvn_fs_fs/fs_fs.c&r1=14130&p2=trunk/subversion/libsvn_fs_fs/fs_fs.c&r2=14131
> ==============================================================================
> --- trunk/subversion/libsvn_fs_fs/fs_fs.c (original)
> +++ trunk/subversion/libsvn_fs_fs/fs_fs.c Mon Apr 11 17:36:51 2005
> @@ -279,15 +279,20 @@
> err = svn_io_read_version_file (&format, path_format (fs, pool), pool);
> if (err && APR_STATUS_IS_ENOENT (err->apr_err))
> {
> - /* Pre-1.2 filesystems did not have a format file (you could say
> - they were format "0"), so they get upgraded on the fly. */
> - svn_error_clear (err), err = NULL;
> - format = SVN_FS_FS__FORMAT_NUMBER;
> - SVN_ERR (svn_io_write_version_file
> - (path_format (fs, pool), format, pool));
> + /* Treat an absent format file as format 1. Do not try to
> + create the format file on the fly, because the repository
> + might be read-only for us, or we might have a umask such
> + that even if we did create the format file, subsequent
> + users would not be able to read it.

Given that elsewhere we use svn_fs_fs__dup_perms, I don't think that
having the wrong umask is really a valid reason for not creating the
format file (I agree with the spirit of the fix, however).

-Fitz

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Apr 12 17:07:10 2005

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.