Changeset 773 for trunk/dll/misc.c


Ignore:
Timestamp:
Aug 7, 2007, 11:23:27 PM (18 years ago)
Author:
Steven Levine
Message:

Correct some compare directories collector nits
Use BldQuoted... functions
Move BldQuoted... functions near primary callers
Add RUNTYPE_MASK
Use Runtime_Error2 more

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/misc.c

    r771 r773  
    2828  31 Jul 07 SHL Clean up and report errors (ticket#24)
    2929  03 Aug 07 GKY Direct editting fixed (ticket#24)
     30  06 Aug 07 SHL Use BldQuotedFileName
    3031
    3132***********************************************************************/
     
    922923    *path = 0;
    923924  *cl = 0;
    924   if (needs_quoting(filename))
    925     strcat(cl, "\"");
    926   strcat(cl, filename);
    927   if (needs_quoting(filename))
    928     strcat(cl, "\"");
     925  BldQuotedFileName(cl, filename);
     926  // *cl = 0;
     927  // if (needs_quoting(filename))
     928  //   strcat(cl, "\"");
     929  // strcat(cl, filename);
     930  // if (needs_quoting(filename))
     931  //   strcat(cl, "\"");
    929932  memset(&ex, 0, sizeof(ex));
    930933  ex.flags = lastflags;
Note: See TracChangeset for help on using the changeset viewer.