mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
lib:cmdline: Fix error handling of --use-krb5-ccache=CCACHE
Best reviewed with `git show -b` BUG: https://bugzilla.samba.org/show_bug.cgi?id=15104 Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
parent
2dbd3210ed
commit
7cc340f972
@ -934,37 +934,43 @@ static void popt_common_credentials_callback(poptContext popt_ctx,
|
||||
}
|
||||
break;
|
||||
}
|
||||
case OPT_USE_KERBEROS_CCACHE:
|
||||
if (arg != NULL) {
|
||||
const char *error_string = NULL;
|
||||
int rc;
|
||||
case OPT_USE_KERBEROS_CCACHE: {
|
||||
const char *error_string = NULL;
|
||||
int rc;
|
||||
|
||||
ok = cli_credentials_set_kerberos_state(creds,
|
||||
CRED_USE_KERBEROS_REQUIRED,
|
||||
CRED_SPECIFIED);
|
||||
if (!ok) {
|
||||
fprintf(stderr,
|
||||
"Failed to set Kerberos state to %s!\n", arg);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
rc = cli_credentials_set_ccache(creds,
|
||||
lp_ctx,
|
||||
arg,
|
||||
CRED_SPECIFIED,
|
||||
&error_string);
|
||||
if (rc != 0) {
|
||||
fprintf(stderr,
|
||||
"Error reading krb5 credentials cache: '%s'"
|
||||
" - %s\n",
|
||||
arg,
|
||||
error_string);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
skip_password_callback = true;
|
||||
if (arg == NULL) {
|
||||
fprintf(stderr,
|
||||
"Failed to parse --use-krb5-ccache=CCACHE: "
|
||||
"Missing argument\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
ok = cli_credentials_set_kerberos_state(creds,
|
||||
CRED_USE_KERBEROS_REQUIRED,
|
||||
CRED_SPECIFIED);
|
||||
if (!ok) {
|
||||
fprintf(stderr,
|
||||
"Failed to set Kerberos state to %s!\n", arg);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
rc = cli_credentials_set_ccache(creds,
|
||||
lp_ctx,
|
||||
arg,
|
||||
CRED_SPECIFIED,
|
||||
&error_string);
|
||||
if (rc != 0) {
|
||||
fprintf(stderr,
|
||||
"Error reading krb5 credentials cache: '%s'"
|
||||
" - %s\n",
|
||||
arg,
|
||||
error_string);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
skip_password_callback = true;
|
||||
break;
|
||||
}
|
||||
case OPT_USE_WINBIND_CCACHE:
|
||||
{
|
||||
uint32_t gensec_features;
|
||||
|
Loading…
Reference in New Issue
Block a user