1 /* 2 * pe.c - Print a second extended filesystem errors behavior 3 * 4 * Copyright (C) 1992, 1993, 1994 Remy Card <card@masi.ibp.fr> 5 * Laboratoire MASI, Institut Blaise Pascal 6 * Universite Pierre et Marie Curie (Paris VI) 7 * 8 * %Begin-Header% 9 * This file may be redistributed under the terms of the GNU Library 10 * General Public License, version 2. 11 * %End-Header% 12 */ 13 14 /* 15 * History: 16 * 94/01/09 - Creation 17 */ 18 19 #include "config.h" 20 #include <stdio.h> 21 22 #include "e2p.h" 23 24 void print_fs_errors (FILE * f, unsigned short errors) 25 { 26 switch (errors) 27 { 28 case EXT2_ERRORS_CONTINUE: 29 fprintf (f, "Continue"); 30 break; 31 case EXT2_ERRORS_RO: 32 fprintf (f, "Remount read-only"); 33 break; 34 case EXT2_ERRORS_PANIC: 35 fprintf (f, "Panic"); 36 break; 37 default: 38 fprintf (f, "Unknown (continue)"); 39 } 40 }