Ignore:
File:
1 edited

Legend:

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

    rb7fd2a0 r8e3498b  
    7070}
    7171
    72 static errno_t cmp_files(const char *fn0, const char *fn1)
     72static int cmp_files(const char *fn0, const char *fn1)
    7373{
    74         errno_t rc = EOK;
     74        int rc = EOK;
    7575        const char *fn[2] = {fn0, fn1};
    7676        int fd[2] = {-1, -1};
     
    8080
    8181        for (int i = 0; i < 2; i++) {
    82                 rc = vfs_lookup_open(fn[i], WALK_REGULAR, MODE_READ, &(fd[i]));
    83                 if (rc != EOK) {
     82                fd[i] = vfs_lookup_open(fn[i], WALK_REGULAR, MODE_READ);
     83                if (fd[i] < 0) {
     84                        rc = fd[i];
    8485                        printf("Unable to open %s\n", fn[i]);
    8586                        goto end;
     
    101102                    memcmp(buffer[0], buffer[1], offset[0]) != 0) {
    102103                        printf("Return 1\n");
    103                         rc = EBUSY;
     104                        rc = 1;
    104105                        goto end;
    105106                }
     
    117118int cmd_cmp(char **argv)
    118119{
    119         errno_t rc;
     120        int rc;
    120121        unsigned int argc;
    121122        int c, opt_ind;
Note: See TracChangeset for help on using the changeset viewer.