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

Diff for /src/usr.bin/mg/echo.c between version 1.64 and 1.65

version 1.64, 2015/11/11 08:52:12 version 1.65, 2015/12/05 02:14:02
Line 148 
Line 148 
                                 maclcur->l_fp = lp->l_fp;                                  maclcur->l_fp = lp->l_fp;
                                 free(lp);                                  free(lp);
                         }                          }
                         if (strncasecmp(rep, "yes", sizeof(rep)) == 0) {                          if (strcasecmp(rep, "yes") == 0) {
                                 ewprintf("");                                  ewprintf("");
                                 return (TRUE);                                  return (TRUE);
                         }                          }
                         if (strncasecmp(rep, "no", sizeof(rep)) == 0) {                          if (strcasecmp(rep, "no") == 0) {
                                 ewprintf("");                                  ewprintf("");
                                 return (FALSE);                                  return (FALSE);
                         }                          }

Legend:
Removed from v.1.64  
changed lines
  Added in v.1.65