aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/uudecode
Commit message (Collapse)AuthorAgeFilesLines
* Add two new options:Wolfram Schneider1998-01-251-9/+29
| | | | | | | | | | | -i Do not overwrite files. -s Do not strip output pathname to base filename. By default uuencode deletes any prefix ending with the last slash '/' for security purpose. Notes: svn path=/head/; revision=32780
* Many places in the code NULL is used in integer context, wherePoul-Henning Kamp1997-09-181-2/+2
| | | | | | | | | | | | plain 0 should be used. This happens to work because we #define NULL to 0, but is stylistically wrong and can cause problems for people trying to port bits of code to other environments. PR: 2752 Submitted by: Arne Henrik Juul <arnej@imf.unit.no> Notes: svn path=/head/; revision=29574
* Use err(3).Philippe Charnier1997-08-221-28/+22
| | | | Notes: svn path=/head/; revision=28564
* compare return value from getopt against -1 rather than EOF, per the finalWarner Losh1997-03-291-1/+1
| | | | | | | posix standard on the topic. Notes: svn path=/head/; revision=24360
* Be tolerant to old uuencode programs which encode the ASCII NULWolfram Schneider1997-03-251-1/+1
| | | | | | | | | character as character 32 (space) instead character 64 (`). See also 'The UNIX-HATERS Handbook', page 82-83. Notes: svn path=/head/; revision=24263
* Treat 'end\0', 'end\n', 'end\r\n' as trailer line, see rev 1.2Wolfram Schneider1997-02-181-1/+3
| | | | Notes: svn path=/head/; revision=22894
* Better check for detecting header line. A header line must matchWolfram Schneider1997-02-181-1/+32
| | | | | | | | | | | "begin [0-7]* *". Now `begin with, ' is not a header line. Do a boundary check for body characters. Characters less than 33 or greater than 96 are out of range. If characters are out of range uudecode print a error message and die. Notes: svn path=/head/; revision=22887
* New options for uudecodeWolfram Schneider1996-10-211-5/+58
| | | | | | | | -p Decode file and write output to standard output. -c Decode more than one uuencode'd file from file if possible. Notes: svn path=/head/; revision=19078
* Oops, restore missing piece of previous commit.Andrey A. Chernov1996-04-251-1/+1
| | | | Notes: svn path=/head/; revision=15385
* Treat ^end<EOF> as valid terminator (like ^end\n), some encoders (f.e. Eudora)Andrey A. Chernov1996-04-251-1/+1
| | | | | | | produce such things. Notes: svn path=/head/; revision=15381
* BSD 4.4 Lite Usr.bin SourcesRodney W. Grimes1994-05-272-0/+193
Notes: svn path=/cvs2svn/branches/CHRISTOS/; revision=1590