Module Name: src Committed By: andvar Date: Sun Feb 26 22:55:02 UTC 2023
Modified Files: src/sbin/clri: clri.c Log Message: s/superblok/superblock/ in comment. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/sbin/clri/clri.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sbin/clri/clri.c diff -u src/sbin/clri/clri.c:1.25 src/sbin/clri/clri.c:1.26 --- src/sbin/clri/clri.c:1.25 Thu Nov 17 06:40:38 2022 +++ src/sbin/clri/clri.c Sun Feb 26 22:55:02 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: clri.c,v 1.25 2022/11/17 06:40:38 chs Exp $ */ +/* $NetBSD: clri.c,v 1.26 2023/02/26 22:55:02 andvar Exp $ */ /* * Copyright (c) 1990, 1993 @@ -42,7 +42,7 @@ __COPYRIGHT("@(#) Copyright (c) 1990, 19 #if 0 static char sccsid[] = "@(#)clri.c 8.3 (Berkeley) 4/28/95"; #else -__RCSID("$NetBSD: clri.c,v 1.25 2022/11/17 06:40:38 chs Exp $"); +__RCSID("$NetBSD: clri.c,v 1.26 2023/02/26 22:55:02 andvar Exp $"); #endif #endif /* not lint */ @@ -142,7 +142,7 @@ main(int argc, char *argv[]) if (atoi(argv[i]) <= 0 || atoi(argv[i]) >= imax) errx(1, "%s is not a valid inode number", argv[i]); - /* delete clean flag in the superblok */ + /* delete clean flag in the superblock */ sbp->fs_clean = ufs_rw32(ufs_rw32(sbp->fs_clean, needswap) << 1, needswap); if (lseek(fd, sblockloc, SEEK_SET) < 0)