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

Diff for /src/usr.bin/xargs/xargs.c between version 1.5 and 1.6

version 1.5, 1997/09/12 01:47:25 version 1.6, 1997/11/04 08:47:15
Line 59 
Line 59 
 #include <unistd.h>  #include <unistd.h>
 #include <limits.h>  #include <limits.h>
 #include <locale.h>  #include <locale.h>
   #include <signal.h>
 #include <err.h>  #include <err.h>
 #include "pathnames.h"  #include "pathnames.h"
   
Line 321 
Line 322 
                         rval = 123;                          rval = 123;
                 }                  }
         } else if (WIFSIGNALED (status)) {          } else if (WIFSIGNALED (status)) {
                 warnx ("%s terminated by signal %d", argv[0], WTERMSIG(status));                  if (WTERMSIG(status) != SIGPIPE) {
                           if (WTERMSIG(status) < NSIG)
                                   warnx ("%s terminated by SIG%s", argv[0],
                                       sys_signame[WTERMSIG(status)]);
                           else
                                   warnx ("%s terminated by signal %d", argv[0],
                                       WTERMSIG(status));
                   }
                 exit(125);                  exit(125);
         }          }
 }  }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6