| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Make uudecode's usage more like that of other programs.
|
|
|
|
|
|
| |
respectively, for convenience when encoding or decoding base64 files.
As requested by various users.
|
|
|
|
| |
to ANSI C. Use new source ID scheme.
|
|
|
|
|
| |
K&R style main() makes gcc emit a warning about missing prototypes so
switch to ANSI.
|
|
|
|
|
|
|
|
| |
won't NUL terminate the string for us, and so we're liable to pick up trailing
garbage, possibly tons of it.
Pointed out by: obrien
MFC after: 3 days
|
|
|
|
|
|
|
| |
was causing output to be corrupted.
Pointed out by: obrien
MFC after: 3 days
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
uudecode(1), as this behaviour was explicitly added in revision 1.12 as
the result of PR 2882. Remove space (' ') from the delimiter characters
handed to strtok(3).
Reviewed by: mike
Approved by: mike
Pointy hat to: me
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
chmodding using an octal mode, as uudecode needs to handle symbolic modes
as chmod and such do.
Suggested by: Tim J. Robbins <tim@robbins.id.au>
Also move meta-character (~ in this case) globbing to only if we are reading
the filename from the encoded file, as otherwise it is the shell's job.
Reviewed by: mike
Approved by: mike
|
|
|
|
|
|
|
|
| |
Add `-o' option to uuencode(1) to pipe the uuencoded output to an
arbitrary file, instead of just stdout.
Reviewed by: -standards, mike
Approved by: mike
|
|
|
|
|
|
| |
`-o /dev/stdout' or `-p'.
Requested by: grog, nectar
|
|
|
|
|
|
|
|
| |
(which allows one to redirect output to stdout); `-o /dev/stdout' is
recommended instead.
Submitted by: Joseph Mallett <jmallett@xMach.org>
MFC after: 2 weeks
|
| |
|
|
|
|
|
|
|
|
| |
of the recent WARNS commits. The idea is:
1) FreeBSD id tags should follow vendor tags.
2) Vendor tags should not be compiled (though copyrights probably should).
3) There should be no blank line between including cdefs and __FBSDIF.
|
| |
|
|
|
|
| |
Submitted by: Nathan Ahlstrom <nrahlstr@winternet.com>
|
|
|
|
|
| |
PR: 17476
Reported by: Jonathan Chen <jon@spock.org>
|
| |
|
|
|
|
|
| |
PR: 4882
Submitted by: Slaven Rezic <eserte@cs.tu-berlin.de>
|
|
|
|
|
|
|
|
| |
-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.
|
|
|
|
|
|
|
|
|
| |
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>
|
| |
|
|
|
|
| |
posix standard on the topic.
|
|
|
|
|
|
| |
character as character 32 (space) instead character 64 (`).
See also 'The UNIX-HATERS Handbook', page 82-83.
|
| |
|
|
|
|
|
|
|
|
| |
"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.
|
|
|
|
|
| |
-p Decode file and write output to standard output.
-c Decode more than one uuencode'd file from file if possible.
|
| |
|
|
|
|
| |
produce such things.
|
|
|