| Commit message (Expand) | Author | Age | Files | Lines |
* | Make GCC 3.3 happy with rcsid[], sccs[], and copyright[]. | obrien | 2003-05-03 | 1 | -2/+1 |
* | The POSIXly-correct /dev/stdout handling added in rev 1.44 makes | fanf | 2003-03-18 | 1 | -1/+1 |
* | Don't complain about an early end-of-file in the -r case rather than | fanf | 2003-03-04 | 1 | -1/+1 |
* | Pull some common uu/b64 code out into shared functions. Move some | fanf | 2003-02-27 | 1 | -36/+44 |
* | Add a relaxed mode for handling raw input which is missing the | fanf | 2003-02-27 | 1 | -11/+36 |
* | Be POSIXly correct in the handling of /dev/stdout -- it's a "magic cookie" | fanf | 2003-02-27 | 1 | -2/+3 |
* | Variables that come in in and out pairs should be named accordingly. | fanf | 2002-11-01 | 1 | -68/+84 |
* | Be much more paranoid about where uudecode writes its output, especially | fanf | 2002-11-01 | 1 | -7/+36 |
* | Instead of abusing stdin and stdout, use our own file pointers. | fanf | 2002-11-01 | 1 | -14/+22 |
* | Some uses of the variable n needed to be int, others needed to be | mike | 2002-09-11 | 1 | -8/+8 |
* | Unbreak world by fixing 4 syntax errors and 1 wrong variable type. | mike | 2002-09-11 | 1 | -5/+5 |
* | Fix style bugs in macros. | fanf | 2002-09-10 | 1 | -9/+6 |
* | Tidy up the base64 code and relax the error handling. | fanf | 2002-09-10 | 1 | -18/+28 |
* | Style: Don't treat pointers as booleans. | fanf | 2002-09-10 | 1 | -2/+2 |
* | Fix tilde-expansion of the filename obtained from the "begin" line in -s | fanf | 2002-09-10 | 1 | -95/+84 |
* | Replace a goto with continue. | fanf | 2002-09-10 | 1 | -2/+1 |
* | Remove register keyword. | fanf | 2002-09-10 | 1 | -2/+2 |
* | Style: space after return. | fanf | 2002-09-10 | 1 | -15/+15 |
* | Make the handling of -i neater. | fanf | 2002-09-10 | 1 | -14/+10 |
* | Only try to chmod the output if it's a regular file, rather than | fanf | 2002-09-10 | 1 | -4/+4 |
* | Don't try (and fail) to fchmod /dev/stdout. Revert the manual page | fanf | 2002-09-03 | 1 | -0/+2 |
* | Remove spurious whitespace | fanf | 2002-09-03 | 1 | -8/+6 |
* | Synch usage() and manpage for b64encode/b64decode. | jmallett | 2002-05-19 | 1 | -2/+5 |
* | Finish converting the rest of the function declaration and prototypes | mike | 2002-05-12 | 1 | -10/+9 |
* | unbreak build: | alfred | 2002-05-11 | 1 | -3/+1 |
* | Use fwrite(3) to write out the decoded information, as the b64 decoding stuff | jmallett | 2002-04-20 | 1 | -1/+1 |
* | base64_decode() was feeding \r and \n to the decoding function, and that | jmallett | 2002-04-20 | 1 | -0/+4 |
* | remove __P | imp | 2002-03-22 | 1 | -4/+4 |
* | Fix handling of filenames with spaces in them in the input file to | jmallett | 2002-03-19 | 1 | -1/+1 |
* | Make uudecode(1) use setmode(3) and getmode(3) instead of just blindly | jmallett | 2002-03-19 | 1 | -39/+50 |
* | Add base64 support to uuencode(1) and uudecode(1), as specified by SUSv3. | jmallett | 2002-03-05 | 1 | -8/+41 |
* | Un-deprecate the -p option. We now have two ways to output to stdout: | mike | 2002-02-16 | 1 | -1/+0 |
* | Add -o option (POSIX.1-2001) to uudecode(1). Deprecate the -p option | mike | 2002-01-27 | 1 | -3/+26 |
* | Warns cleanup. Add FreeBSD ID to Makefile. | dwmalone | 2001-12-03 | 1 | -1/+1 |
* | While I'm in here, remove an unused variable. | sheldonh | 2000-03-30 | 1 | -1/+1 |
* | Do not overwrite files when the -i option is specified! | sheldonh | 2000-03-27 | 1 | -10/+14 |
* | $Id$ -> $FreeBSD$ | peter | 1999-08-28 | 1 | -1/+1 |
* | Allow spaces in the filename to be decoded to. | steve | 1998-05-25 | 1 | -2/+2 |
* | Add two new options: | wosch | 1998-01-25 | 1 | -9/+29 |
* | Many places in the code NULL is used in integer context, where | phk | 1997-09-18 | 1 | -2/+2 |
* | Use err(3). | charnier | 1997-08-22 | 1 | -28/+22 |
* | compare return value from getopt against -1 rather than EOF, per the final | imp | 1997-03-29 | 1 | -1/+1 |
* | Be tolerant to old uuencode programs which encode the ASCII NUL | wosch | 1997-03-25 | 1 | -1/+1 |
* | Treat 'end\0', 'end\n', 'end\r\n' as trailer line, see rev 1.2 | wosch | 1997-02-18 | 1 | -1/+3 |
* | Better check for detecting header line. A header line must match | wosch | 1997-02-18 | 1 | -1/+32 |
* | New options for uudecode | wosch | 1996-10-21 | 1 | -5/+58 |
* | Oops, restore missing piece of previous commit. | ache | 1996-04-25 | 1 | -1/+1 |
* | Treat ^end<EOF> as valid terminator (like ^end\n), some encoders (f.e. Eudora) | ache | 1996-04-25 | 1 | -1/+1 |
* | BSD 4.4 Lite Usr.bin Sources | rgrimes | 1994-05-27 | 1 | -0/+187 |