summaryrefslogtreecommitdiffstats
path: root/usr.bin/split/split.c
diff options
context:
space:
mode:
authortjr <tjr@FreeBSD.org>2005-08-21 06:35:02 +0000
committertjr <tjr@FreeBSD.org>2005-08-21 06:35:02 +0000
commit42418979749a47afb8872241d640870728dcce45 (patch)
tree2eea83d3742e741241c964b22dfe0381093d992d /usr.bin/split/split.c
parent0a6ac5478294670c743b23a77f331d93033a896a (diff)
downloadFreeBSD-src-42418979749a47afb8872241d640870728dcce45.zip
FreeBSD-src-42418979749a47afb8872241d640870728dcce45.tar.gz
Remove the hack that varied the first character of the output file name
if none was specified on the command line. This is not permitted by POSIX, and no longer needed now that we have the -a option. PR: 85099 Submitted by: Toby Peterson (Apple Computer)
Diffstat (limited to 'usr.bin/split/split.c')
-rw-r--r--usr.bin/split/split.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/usr.bin/split/split.c b/usr.bin/split/split.c
index ca3847c..e1978be 100644
--- a/usr.bin/split/split.c
+++ b/usr.bin/split/split.c
@@ -319,16 +319,8 @@ newfile(void)
if ((maxfiles *= 26) <= 0)
errx(EX_USAGE, "suffix is too long (max %ld)", i);
- /*
- * Hack to increase max files; original code wandered through
- * magic characters.
- */
- if (fnum == maxfiles) {
- if (!defname || fname[0] == 'z')
- errx(EX_DATAERR, "too many files");
- ++fname[0];
- fnum = 0;
- }
+ if (fnum == maxfiles)
+ errx(EX_DATAERR, "too many files");
/* Generate suffix of sufflen letters */
tfnum = fnum;
OpenPOWER on IntegriCloud