diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2024-02-03 18:52:00 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2024-02-03 18:52:00 +0000 |
commit | 408fdd6bcb2d3745aa9662aa649fdb765f04b9a1 (patch) | |
tree | 41d03e8f5a389984c57ed54b3ab92b12e52a673e /sbin/dumpfs | |
parent | 2fa0d388000cf61b7432ce38ca7f41fd59a919d6 (diff) |
Remove Softdep.
Softdep has been a no-op for some time now, this removes it to get
it out of the way.
Flensing mostly done in Talinn, with some help from krw@
ok deraadt@
Diffstat (limited to 'sbin/dumpfs')
-rw-r--r-- | sbin/dumpfs/dumpfs.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sbin/dumpfs/dumpfs.c b/sbin/dumpfs/dumpfs.c index ec6da9dd3d1..481f5b41e95 100644 --- a/sbin/dumpfs/dumpfs.c +++ b/sbin/dumpfs/dumpfs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dumpfs.c,v 1.37 2022/12/04 23:50:46 cheloha Exp $ */ +/* $OpenBSD: dumpfs.c,v 1.38 2024/02/03 18:51:57 beck Exp $ */ /* * Copyright (c) 2002 Networks Associates Technology, Inc. @@ -273,12 +273,10 @@ dumpfs(int fd, const char *name) printf("none"); if (fsflags & FS_UNCLEAN) printf("unclean "); - if (fsflags & FS_DOSOFTDEP) - printf("soft-updates "); if (fsflags & FS_FLAGS_UPDATED) printf("updated "); #if 0 - fsflags &= ~(FS_UNCLEAN | FS_DOSOFTDEP | FS_FLAGS_UPDATED); + fsflags &= ~(FS_UNCLEAN | FS_FLAGS_UPDATED); if (fsflags != 0) printf("unknown flags (%#x)", fsflags); #endif |