Changeset 3430 in MondoRescue for branches/3.2/mondo/src/common


Ignore:
Timestamp:
Aug 27, 2015, 10:57:37 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • use the keyword TODO (yellow in vim) to indicate code to review instead of BCO|BERLIOS
Location:
branches/3.2/mondo/src/common
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mondo/src/common/libmondo-archive.c

    r3423 r3430  
    502502    char *cd_recovery_sz = NULL;
    503503    char *tape_size_sz = NULL;
    504     char *use_lilo_sz = NULL;   /* BCO: shared between LILO/ELILO */
     504    char *use_lilo_sz = NULL;   /* TODO: shared between LILO/ELILO */
    505505    char *value = NULL;
    506506    char *bootdev = NULL;
     
    690690    } else if (bkpinfo->boot_loader == 'E') {
    691691        mr_asprintf(bootldr_str, "ELILO");
    692         /* BCO: fix it for Debian, Mageia, ... */
     692        /* TODO: fix it for Debian, Mageia, ... */
    693693        if (!does_file_exist("/etc/elilo.conf") && does_file_exist("/boot/efi/efi/redhat/elilo.conf")) {
    694694            run_program_and_log_output("ln -sf /boot/efi/efi/redhat/elilo.conf /etc/elilo.conf", 5);
     
    891891    log_msg(2, command);
    892892
    893     // BCO old call :
     893    // TODO old call :
    894894    //res = run_program_and_log_output(command, FALSE);
    895895    log_msg(1, "Call to mindi");
     
    20182018                    log_msg(2, "CHILD - fip - calling feed_into_ntfsprog(%s, %s)", bigfile_fname, sz_devfile);
    20192019                    res = feed_into_ntfsprog(bigfile_fname, sz_devfile);
    2020                     /* BCO/BERLIOS Does the child need to unalocate memory as well ?
     2020                    /* TODO: Does the child need to unalocate memory as well ?
    20212021                    mr_free(bigfile_fname);
    20222022                    mr_free(sz_devfile);
  • branches/3.2/mondo/src/common/libmondo-files.c

    r3350 r3430  
    595595            current_time = get_time();
    596596            counter = 0;
    597             /* BERLIOS: 37 really ? */
     597            /* TODO: 37 really ? */
    598598            curr_fname[37] = '\0';
    599599            curr_pos = ftello(fin) / 1024;
     
    796796                }
    797797            } else {
    798                 /* BERLIOS: more than long here ??? */
     798                /* TODO: more than long here ??? */
    799799                file_len_K = (long) (length_of_file(fname) / 1024);
    800800            }
     
    12141214        return (FALSE);
    12151215    }
    1216     /* BERLIOS: This is just plain WRONG !! */
     1216    /* TODO: This is just plain WRONG !! */
    12171217    mr_asprintf(do_not_compress_these,"%s", last_line_of_file(tmp));
    12181218    mr_free(tmp);
  • branches/3.2/mondo/src/common/libmondo-mountlist.c

    r3374 r3430  
    565565        }
    566566        log_msg(8,"Entry: %d (%s)", i, drivelist->el[i].device);
    567         /* BCO: tmp can be NULL */
     567        /* TODO: tmp can be NULL */
    568568        if (tmp != NULL) {
    569569            log_msg(8,"Adding: %s to flaws_str", tmp);
  • branches/3.2/mondo/src/common/libmondo-stream.c

    r3296 r3430  
    12711271 */
    12721272
    1273 /* BERLIOS: Should be reviewed for mediasize being a off_t ??? */
     1273/* TODO: Should be reviewed for mediasize being a off_t ??? */
    12741274bool
    12751275should_we_write_to_next_tape(long mediasize,
     
    17211721    paranoid_fclose(fin);
    17221722    mr_asprintf(checksum, "%04x%04x", crc16, crctt);
    1723     /* BERLIOS: what does it do ??? */
     1723    /* TODO: what does it do ??? */
    17241724    write_header_block_to_stream((off_t)g_current_media_number, checksum, BLK_STOP_FILE);
    17251725    mr_free(checksum);
Note: See TracChangeset for help on using the changeset viewer.