From: Erez Zadok Date: Sat, 7 May 2022 20:48:17 +0000 (-0400) Subject: wrapfs: change http URLs to https X-Git-Url: https://git.fsl.cs.sunysb.edu/?a=commitdiff_plain;h=d4ec15cdf474f582719014d143b4791033643b8c;p=wrapfs-3.14.y.git wrapfs: change http URLs to https --- diff --git a/Documentation/filesystems/wrapfs.txt b/Documentation/filesystems/wrapfs.txt index daa313b2ac69..a0fc9f90b291 100644 --- a/Documentation/filesystems/wrapfs.txt +++ b/Documentation/filesystems/wrapfs.txt @@ -1,7 +1,7 @@ Wrapfs: a null-layer (aka wrapper) stackable file system Maintainer: Erez Zadok -Web Site: +Web Site: ------------------------------------------------------------------------------ MOTIVATION: @@ -44,7 +44,7 @@ This is a brief description of how Wrapfs operates. For more information, see the full paper published in Linux Expo 1999, titled "A Stackable File System Interface For Linux": - + The basic function of a stackable file system is to pass an operation and its arguments to the lower-level file system. For every VFS object (inode, diff --git a/MAINTAINERS b/MAINTAINERS index a6e78b1f94c3..e4fcde53ab9e 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -9668,7 +9668,7 @@ F: Documentation/workqueue.txt WRAP FILE SYSTEM M: Erez Zadok L: wrapfs@filesystems.org -W: http://wrapfs.filesystems.org/ +W: https://wrapfs.filesystems.org/ T: git git://git.fsl.cs.sunysb.edu/wrapfs-latest.git S: Maintained F: Documentation/filesystems/wrapfs.txt diff --git a/fs/wrapfs/Kconfig b/fs/wrapfs/Kconfig index a495c7d05d28..6be29e8ba3d4 100644 --- a/fs/wrapfs/Kconfig +++ b/fs/wrapfs/Kconfig @@ -5,4 +5,4 @@ config WRAP_FS operations to the lower layer. It is designed as a useful template for developing or debugging other stackable file systems, and more (see Documentation/filesystems/wrapfs.txt). See - for details. + for details. diff --git a/fs/wrapfs/main.c b/fs/wrapfs/main.c index 16394ba43e8b..14a85cfc2b37 100644 --- a/fs/wrapfs/main.c +++ b/fs/wrapfs/main.c @@ -167,9 +167,9 @@ static void __exit exit_wrapfs_fs(void) } MODULE_AUTHOR("Erez Zadok, Filesystems and Storage Lab, Stony Brook University" - " (http://www.fsl.cs.sunysb.edu/)"); + " (https://www.fsl.cs.sunysb.edu/)"); MODULE_DESCRIPTION("Wrapfs " WRAPFS_VERSION - " (http://wrapfs.filesystems.org/)"); + " (https://wrapfs.filesystems.org/)"); MODULE_LICENSE("GPL"); module_init(init_wrapfs_fs);