Changeset 1117


Ignore:
Timestamp:
Mar 27, 2015, 2:01:20 AM (10 years ago)
Author:
dmik
Message:

dash: dash: Convert DOS slashes in program name.

This is an addon to r1114 and covers a case when the shell
is started in interactive mode.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified dash/trunk/src/options.c

    r1094 r1117  
    128128        login = xargv[0] && xargv[0][0] == '-';
    129129        arg0 = xargv[0];
     130#if PATH_USE_BACKSLASH
     131        while ((arg0 = strchr(arg0, '\\')) != NULL)
     132                *arg0++ = '/';
     133        arg0 = xargv[0];
     134#endif
    130135        if (argc > 0)
    131136                xargv++;
Note: See TracChangeset for help on using the changeset viewer.