-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Labels
Description
Detected by chance. There is a superfluous comma here:
gct/gsi/sysconfig/source/library/globus_gsi_system_config.c
Lines 1901 to 1910 in aed61cc
| if(user_key && !(*user_key)) | |
| { | |
| GLOBUS_GSI_SYSCONFIG_ERROR_RESULT( | |
| result, | |
| GLOBUS_GSI_SYSCONFIG_ERROR_GETTING_KEY_STRING, | |
| (_GSSL("The user key could not be found in:\n," | |
| "1) env. var. X509_USER_KEY\n" | |
| "2) $HOME/.globus/userkey.pem\n" | |
| "3) $HOME/.globus/usercred.p12\n\n"))); | |
| goto done; |
...that is not present for the case when the cert file is missing:
.globus/userkey.pem missing, .globus/usercert.pem present
$ grid-proxy-init -debug
Error: Couldn't find valid credentials to generate a proxy.
grid_proxy_init.c:535: globus_sysconfig: Error with key filename: The user key could not be found in:
,1) env. var. X509_USER_KEY
2) $HOME/.globus/userkey.pem
3) $HOME/.globus/usercred.p12
.globus/userkey.pem present, .globus/usercert.pem missing
$ grid-proxy-init -debug
Error: Couldn't find valid credentials to generate a proxy.
grid_proxy_init.c:535: globus_sysconfig: Error with certificate filename: The user cert could not be found in:
1) env. var. X509_USER_CERT
2) $HOME/.globus/usercert.pem
3) $HOME/.globus/usercred.p12