Changeset 4482bc7 in mainline for uspace/lib/libc/generic/vfs/vfs.c


Ignore:
Timestamp:
2009-04-14T19:21:25Z (16 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6700ee2
Parents:
732bb0c
Message:

strcat() → str_append().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/generic/vfs/vfs.c

    r732bb0c r4482bc7  
    8888                ncwd_path_nc[0] = '\0';
    8989        }
    90         strcat(ncwd_path_nc, path);
     90        str_append(ncwd_path_nc, cwd_size + 1 + size + 1, path);
    9191        ncwd_path = canonify(ncwd_path_nc, retlen);
    9292        if (!ncwd_path) {
Note: See TracChangeset for help on using the changeset viewer.