Changeset 095003a8 in mainline for uspace/app/bdsh/exec.c


Ignore:
Timestamp:
2009-04-09T22:32:23Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f4b1535
Parents:
7afb4a5
Message:

strdup() → str_dup()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/exec.c

    r7afb4a5 r095003a8  
    8181        }
    8282
    83         path_tok = strdup(PATH);
     83        path_tok = str_dup(PATH);
    8484
    8585        /* Extract the PATH env to a path[] array */
     
    115115        char *tmp;
    116116
    117         tmp = strdup(find_command(cmd));
     117        tmp = str_dup(find_command(cmd));
    118118        free(found);
    119119
Note: See TracChangeset for help on using the changeset viewer.