Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/util-linux/fsck_minix.c

    r3232 r3621  
    372372    }
    373373    if (def)
    374         printf("y\n");
     374        puts("y");
    375375    else {
    376         printf("n\n");
     376        puts("n");
    377377        errors_uncorrected = 1;
    378378    }
     
    406406            cont = ask("Do you really want to continue", 0);
    407407        if (!cont) {
    408             printf("Check aborted\n");
     408            puts("Check aborted");
    409409            exit(EXIT_SUCCESS);
    410410        }
     
    471471        return;
    472472    if (nr < FIRSTZONE || nr >= ZONES) {
    473         printf("Internal error: trying to write bad block\n"
    474                "Write request ignored\n");
     473        puts("Internal error: trying to write bad block\n"
     474            "Write request ignored");
    475475        errors_uncorrected = 1;
    476476        return;
     
    660660        die("can't read inodes");
    661661    if (NORM_FIRSTZONE != FIRSTZONE) {
    662         printf("warning: firstzone!=norm_firstzone\n");
     662        puts("warning: firstzone!=norm_firstzone");
    663663        errors_uncorrected = 1;
    664664    }
     
    687687    if (!inode_count[nr]) {
    688688        if (!inode_in_use(nr)) {
    689             printf("Inode %d is marked as 'unused', but it is used "
     689            printf("Inode %u is marked as 'unused', but it is used "
    690690                    "for file '%s'\n", nr, current_name);
    691691            if (OPT_repair) {
     
    714714        links++;
    715715    if (!++inode_count[nr]) {
    716         printf("Warning: inode count too big\n");
     716        puts("Warning: inode count too big");
    717717        inode_count[nr]--;
    718718        errors_uncorrected = 1;
     
    13001300    if (changed) {
    13011301        write_tables();
    1302         printf("FILE SYSTEM HAS BEEN CHANGED\n");
     1302        puts("FILE SYSTEM HAS BEEN CHANGED");
    13031303        sync();
    13041304    } else if (OPT_repair)
Note: See TracChangeset for help on using the changeset viewer.