change more opensc.org references to opensc-project.org till dns is back.

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@2818 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
aj 2006-01-22 21:15:07 +00:00
parent 5f94c5f499
commit b07df40932
6 changed files with 6 additions and 6 deletions

2
NEWS
View File

@ -1,7 +1,7 @@
NEWS for OpenSC -- History of user visible changes
Please also see doc/WhatsNew.html or
http://www.opensc.org/opensc/wiki/WhatsNew
http://www.opensc-project.org/opensc/wiki/WhatsNew
Also see the svn changelog using svn command
or doc/ChangeLog.

2
README
View File

@ -1,5 +1,5 @@
OpenSC documentation is now maintained in our online wiki at
http://www.opensc.org/opensc/
http://www.opensc-project.org/opensc/
and a copy in html format is provided in the doc/ directory
with all releases or snapshots of OpenSC in tar.gz files.

View File

@ -115,7 +115,7 @@ CK_RV C_GetInfo(CK_INFO_PTR pInfo)
pInfo->cryptokiVersion.major = 2;
pInfo->cryptokiVersion.minor = 11;
strcpy_bp(pInfo->manufacturerID,
"OpenSC Project (www.opensc.org)",
"OpenSC Project (www.opensc-project.org)",
sizeof(pInfo->manufacturerID));
strcpy_bp(pInfo->libraryDescription,
"smart card PKCS#11 API",

View File

@ -36,7 +36,7 @@ unsigned int first_free_slot = 0;
static void init_slot_info(CK_SLOT_INFO_PTR pInfo)
{
strcpy_bp(pInfo->slotDescription, "Virtual slot", 64);
strcpy_bp(pInfo->manufacturerID, "OpenSC project (www.opensc.org)", 32);
strcpy_bp(pInfo->manufacturerID, "OpenSC project (www.opensc-project.org)", 32);
pInfo->flags = CKF_REMOVABLE_DEVICE | CKF_HW_SLOT;
pInfo->hardwareVersion.major = 0;
pInfo->hardwareVersion.minor = 0;

View File

@ -520,7 +520,7 @@ int main(
fprintf(stderr," %s --pin1 123456 cert /tmp/cert1 2\n", argv[0]);
fprintf(stderr," %s cert 2 /tmp/cert2\n", argv[0]);
fprintf(stderr,"\nBe carful - this tool may destroy your card\n");
fprintf(stderr,"\nQuestions? Comments? ==> opensc-user@opensc.org\n");
fprintf(stderr,"\nQuestions? Comments? ==> opensc-user@opensc-project.org\n");
exit(1);
}
if(optind==argc-2 && !strcmp(argv[optind],"unblock")){

View File

@ -28,7 +28,7 @@ typedef unsigned __int32 uint32_t;
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#else
#warning no uint32_t type available, please contact opensc-devel@opensc.org
#warning no uint32_t type available, please contact opensc-devel@opensc-project.org
#endif
#endif
#include <openssl/bn.h>