Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/cat/cat.c

    r39330200 r8e3498b  
    187187        off64_t file_size = 0, length = 0;
    188188        aoff64_t pos = 0;
    189         errno_t rc;
     189        int rc;
    190190
    191191        bool reading_stdin = dash_represents_stdin && (str_cmp(fname, "-") == 0);
     
    195195                /* Allow storing the whole UTF-8 character. */
    196196                blen = STR_BOUNDS(1);
    197         } else {
    198                 errno_t rc = vfs_lookup_open(fname, WALK_REGULAR, MODE_READ, &fd);
    199                 if (rc != EOK) {
    200                         fd = -1;
    201                 }
    202         }
     197        } else
     198                fd = vfs_lookup_open(fname, WALK_REGULAR, MODE_READ);
    203199       
    204200        if (fd < 0) {
     
    215211
    216212        if (tail != CAT_FULL_FILE) {
    217                 vfs_stat_t st;
     213                struct stat st;
    218214
    219215                if (vfs_stat(fd, &st) != EOK) {
     
    316312        bool tailFirst = false;
    317313        sysarg_t rows, cols;
    318         errno_t rc;
     314        int rc;
    319315       
    320316        /*
     
    328324        console_rows = 0;
    329325        should_quit = false;
    330         dash_represents_stdin = false;
    331326        console = console_init(stdin, stdout);
    332327        number = false;
     
    339334
    340335        for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) {
    341                 c = getopt_long(argc, argv, "xhvmH:t:b:sn", long_options, &opt_ind);
     336                c = getopt_long(argc, argv, "xhvmH:t:b:s:n", long_options, &opt_ind);
    342337                switch (c) {
    343338                case 'h':
Note: See TracChangeset for help on using the changeset viewer.