summaryrefslogtreecommitdiffstats
path: root/apps/vms_decc_argv.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move libapps.a source to apps/libRichard Levitte2019-09-041-67/+0
| | | | | | | | This makes it clearer what's what. The 'openssl' application and its sub-commands remain in apps/ Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/9723)
* testutil: ensure good treatment of argv on non-Unix platformsRichard Levitte2019-03-051-1/+2
| | | | | | | | | | | | | | | | | | From a Unix point of view, some other platform families have certain quirks. Windows command prompt doesn't expand globs into actual file names, so we must do this. VMS has some oddity with argv pointer size that can cause crashes if you're not careful (by copying it to a less surprising pointer size array). The fixups already exist and are used in the apps/ code. However, the testutil code started using the opt routines from apps/ without including the non-Unix fixups. This change fixes that. For VMS' sake, libtestutil gets an app_malloc() shim, to avoid sucking in all of apps/apps.c. Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/8381)
* VMS: move copy_argc to its own module and make it an aux sourceRichard Levitte2019-03-051-0/+66
copy_argv was never initialization code. Make it self-cleaning too. Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/8381)