Module Name:    src
Committed By:   riastradh
Date:           Fri Apr  8 23:48:05 UTC 2022

Modified Files:
        src/sbin/fsck_udf: main.c

Log Message:
fsck_udf(8): Mark vat_length as ignored.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sbin/fsck_udf/main.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/fsck_udf/main.c
diff -u src/sbin/fsck_udf/main.c:1.4 src/sbin/fsck_udf/main.c:1.5
--- src/sbin/fsck_udf/main.c:1.4	Fri Apr  8 23:47:19 2022
+++ src/sbin/fsck_udf/main.c	Fri Apr  8 23:48:05 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: main.c,v 1.4 2022/04/08 23:47:19 riastradh Exp $	*/
+/*	$NetBSD: main.c,v 1.5 2022/04/08 23:48:05 riastradh Exp $	*/
 
 /*
  * Copyright (c) 2022 Reinoud Zandijk
@@ -37,7 +37,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: main.c,v 1.4 2022/04/08 23:47:19 riastradh Exp $");
+__RCSID("$NetBSD: main.c,v 1.5 2022/04/08 23:48:05 riastradh Exp $");
 #endif /* not lint */
 
 #include <stdio.h>
@@ -1782,6 +1782,7 @@ udf_check_for_vat(union dscrptr *dscr)
 		return ENOENT;
 
 	/* TODO sanity check vat length */
+	(void)vat_length;
 
 	return 0;
 }

Reply via email to