[BACK]Return to join.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / join

Diff for /src/usr.bin/join/join.c between version 1.7 and 1.8

version 1.7, 1997/04/09 16:42:25 version 1.8, 1997/07/23 02:59:33
Line 559 
Line 559 
   
         while ((ap = *++argv) != NULL) {          while ((ap = *++argv) != NULL) {
                 /* Return if "--". */                  /* Return if "--". */
                 if (ap[0] == '-' && ap[1] == '-')                  if (ap[0] != '-' || ap[0] == '-' && ap[1] == '-')
                         return;                          return;
                 switch (ap[1]) {                  switch (ap[1]) {
                 case 'a':                  case 'a':

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8