pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Sort alphabetically



Module Name:	pkgsrc-wip
Committed By:	Bartosz Kuzma <bartosz.kuzma%gmail.com@localhost>
Pushed By:	bartosz.kuzma
Date:		Wed Sep 10 18:21:23 2025 +0200
Changeset:	2343c9b6bd467cc8a4a891c910c12c4caf22360a

Modified Files:
	duf/files/filesystems_netbsd.go

Log Message:
Sort alphabetically

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=2343c9b6bd467cc8a4a891c910c12c4caf22360a

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 duf/files/filesystems_netbsd.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diffs:
diff --git a/duf/files/filesystems_netbsd.go b/duf/files/filesystems_netbsd.go
index 0b2c4f6f8f..ce322e5f1a 100644
--- a/duf/files/filesystems_netbsd.go
+++ b/duf/files/filesystems_netbsd.go
@@ -21,7 +21,7 @@ func isNetworkFs(m Mount) bool {
 }
 
 func isSpecialFs(m Mount) bool {
-	fs := []string{"devfs", "tmpfs", "ptyfs", "kernfs", "procfs"}
+	fs := []string{"devfs", "kernfs", "procfs", "ptyfs", "tmpfs"}
 
 	for _, v := range fs {
 		if m.Fstype == v {


Home | Main Index | Thread Index | Old Index