[BACK]Return to job.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.bin / make

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.bin/make/job.c between version 1.214 and 1.215

version 1.214, 2020/08/22 21:42:38 version 1.215, 2020/08/23 18:26:35
Line 2445  Job_ParseShell(char *line)
Line 2445  Job_ParseShell(char *line)
 {  {
     char        **words;      char        **words;
     char        **argv;      char        **argv;
     int         argc;      size_t      argc;
     char        *path;      char        *path;
     Shell       newShell;      Shell       newShell;
     Boolean     fullSpec = FALSE;      Boolean     fullSpec = FALSE;
Line 2462  Job_ParseShell(char *line)
Line 2462  Job_ParseShell(char *line)
     /*      /*
      * Parse the specification by keyword       * Parse the specification by keyword
      */       */
     words = brk_string(line, &argc, TRUE, &path);      words = brk_string(line, TRUE, &argc, &path);
     if (words == NULL) {      if (words == NULL) {
         Error("Unterminated quoted string [%s]", line);          Error("Unterminated quoted string [%s]", line);
         return FAILURE;          return FAILURE;

Legend:
Removed from v.1.214  
changed lines
  Added in v.1.215

CVSweb <webmaster@jp.NetBSD.org>