Skip to content

Commit

Permalink
BLKSIZE defaults to 80 if not set
Browse files Browse the repository at this point in the history
  • Loading branch information
drbruce-git authored and GitHub Enterprise committed Sep 24, 2019
2 parents c7907de + 4f5ca64 commit 4292932
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Migration/sclm/groovy/GenerateDBBXml.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ def convertToBpxwdynOptions(dsdef)
options << dsTypeOptions[dsdef.@dsType.toInteger()]
options << "recfm(${[email protected]().isEmpty() ? 'F,B' : [email protected]().toUpperCase().findAll { ch -> ch in validRecfm }.join(',')})"
options << "lrecl(${[email protected]().isEmpty() ? 80 : [email protected]()})"
options << "blksize(${[email protected]().isEmpty() ? 80 : [email protected]()})"
if (!dsdef.@storageClass.text().isEmpty())
options << "STORCLAS(${[email protected]()})"
if (!dsdef.@managementClass.text().isEmpty())
Expand Down

0 comments on commit 4292932

Please sign in to comment.