Skip to content

Commit

Permalink
Deprecate sslget
Browse files Browse the repository at this point in the history
The sslget command is no longer used by the code so it has
been deprecated and might be removed in the future to reduce
maintenance. This command can be replaced with pki CLI or curl.
  • Loading branch information
edewata committed May 30, 2023
1 parent b643446 commit 62299b5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions base/tools/src/main/native/sslget/sslget.c
Original file line number Diff line number Diff line change
Expand Up @@ -815,6 +815,8 @@ main(int argc, char **argv)
int co;
char *crlf;

fprintf( stderr, "WARNING: sslget has been deprecated. Use pki CLI or curl instead.\n" );

/* Call the NSPR initialization routines */
PR_Init( PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, 1);

Expand Down
5 changes: 5 additions & 0 deletions docs/changes/v11.5.0/Tools-Changes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,8 @@ The `pki nss-cert-request` and `pki nss-cert-issue` commands have been
modified to provide a `--subjectAltName` option.
This option will override the `subjectAltName` parameter in the extension
configuration file.

== Deprecate sslget ==

The `sslget` command has been deprecated.
Use `pki` CLI or the `curl` command instead.

0 comments on commit 62299b5

Please sign in to comment.