Module Name: src
Committed By: tsutsui
Date: Wed May 17 09:54:59 UTC 2023
Modified Files:
src/sbin/newfs_ext2fs: mke2fs.c newfs_ext2fs.8
Log Message:
Use https for Ext2 documentation URLs.
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sbin/newfs_ext2fs/mke2fs.c
cvs rdiff -u -r1.14 -r1.15 src/sbin/newfs_ext2fs/newfs_ext2fs.8
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sbin/newfs_ext2fs/mke2fs.c
diff -u src/sbin/newfs_ext2fs/mke2fs.c:1.25 src/sbin/newfs_ext2fs/mke2fs.c:1.26
--- src/sbin/newfs_ext2fs/mke2fs.c:1.25 Mon Sep 5 10:44:36 2016
+++ src/sbin/newfs_ext2fs/mke2fs.c Wed May 17 09:54:59 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: mke2fs.c,v 1.25 2016/09/05 10:44:36 martin Exp $ */
+/* $NetBSD: mke2fs.c,v 1.26 2023/05/17 09:54:59 tsutsui Exp $ */
/*-
* Copyright (c) 2007 Izumi Tsutsui. All rights reserved.
@@ -88,11 +88,11 @@
* Reference:
* - All NetBSD sources under src/sys/ufs/ext2fs and src/sbin/fsck_ext2fs
* - Ext2fs Home Page
- * http://e2fsprogs.sourceforge.net/ext2.html
+ * https://e2fsprogs.sourceforge.net/ext2.html
* - Design and Implementation of the Second Extended Filesystem
- * http://e2fsprogs.sourceforge.net/ext2intro.html
+ * https://e2fsprogs.sourceforge.net/ext2intro.html
* - Linux Documentation "The Second Extended Filesystem"
- * http://www.kernel.org/doc/Documentation/filesystems/ext2.txt
+ * https://www.kernel.org/doc/Documentation/filesystems/ext2.txt
*/
#include <sys/cdefs.h>
@@ -100,7 +100,7 @@
#if 0
static char sccsid[] = "@(#)mkfs.c 8.11 (Berkeley) 5/3/95";
#else
-__RCSID("$NetBSD: mke2fs.c,v 1.25 2016/09/05 10:44:36 martin Exp $");
+__RCSID("$NetBSD: mke2fs.c,v 1.26 2023/05/17 09:54:59 tsutsui Exp $");
#endif
#endif /* not lint */
Index: src/sbin/newfs_ext2fs/newfs_ext2fs.8
diff -u src/sbin/newfs_ext2fs/newfs_ext2fs.8:1.14 src/sbin/newfs_ext2fs/newfs_ext2fs.8:1.15
--- src/sbin/newfs_ext2fs/newfs_ext2fs.8:1.14 Sat Apr 13 19:29:27 2019
+++ src/sbin/newfs_ext2fs/newfs_ext2fs.8 Wed May 17 09:54:59 2023
@@ -1,4 +1,4 @@
-.\" $NetBSD: newfs_ext2fs.8,v 1.14 2019/04/13 19:29:27 maya Exp $
+.\" $NetBSD: newfs_ext2fs.8,v 1.15 2023/05/17 09:54:59 tsutsui Exp $
.\"
.\" Copyright (c) 1983, 1987, 1991, 1993, 1994
.\" The Regents of the University of California. All rights reserved.
@@ -281,7 +281,7 @@ references the same partition as the min
.%A Stephen Tweedie
.%T "Design and Implementation of the Second Extended Filesystem"
.%J "The Proceedings of the First Dutch International Symposium on Linux"
-.%U http://e2fsprogs.sourceforge.net/ext2intro.html
+.%U https://e2fsprogs.sourceforge.net/ext2intro.html
.Re
.Sh HISTORY
The