Home | History | Annotate | Download | only in ext2ed

Lines Matching defs:option

402 		wprintw (command_win,"You may wish to use the configuration option ForceExt2 on\n");
494 char option [80],value [80];
505 while (get_next_option (fp,option,value)) {
506 if (strcasecmp (option,"Ext2Descriptors")==0) {
510 else if (strcasecmp (option,"AlternateDescriptors")==0) {
514 else if (strcasecmp (option,"LogFile")==0) {
518 else if (strcasecmp (option,"LogChanges")==0) {
524 fprintf (stderr,"Error - Illegal value: %s %s\n",option,value);
529 else if (strcasecmp (option,"AllowChanges")==0) {
535 fprintf (stderr,"Error - Illegal value: %s %s\n",option,value);
540 else if (strcasecmp (option,"AllowMountedRead")==0) {
546 fprintf (stderr,"Error - Illegal value: %s %s\n",option,value);
551 else if (strcasecmp (option,"ForceExt2")==0) {
557 fprintf (stderr,"Error - Illegal value: %s %s\n",option,value);
562 else if (strcasecmp (option,"DefaultBlockSize")==0) {
566 else if (strcasecmp (option,"DefaultTotalBlocks")==0) {
570 else if (strcasecmp (option,"DefaultBlocksInGroup")==0) {
574 else if (strcasecmp (option,"ForceDefault")==0) {
580 fprintf (stderr,"Error - Illegal value: %s %s\n",option,value);
586 fprintf (stderr,"Error - Unknown option: %s\n",option);
596 int get_next_option (FILE *fp,char *option,char *value)
608 ptr=parse_word (buffer,option);