Keep going to show all errors.
[fsck.sofs09.git] / test_sbmagic.c
blob36fdc196387848925776363f3904ef468e2deabc
1 #include <stdio.h>
3 #include "fsck.h"
4 #include "fsck_helper.h"
5 #include "sofs09.h"
7 testresult_t test_sbmagic (void)
9 testresult_t ret;
10 SOSuperBlock *sb;
12 fetch_superblock(&sb);
14 if (sb->magic == MAGIC_NUMBER) {
15 ret = nice;
16 } else {
17 ret = corrupt;
18 printf("This is not a valid SOFS09 filesystem.\n");
21 return ret;