Lines Matching refs:path
696 static errno_t sss_write_krb5_localauth_snippet(const char *path)
709 file_name = talloc_asprintf(tmp_ctx, "%s/localauth_plugin", path);
740 static errno_t sss_write_krb5_libdefaults_snippet(const char *path)
752 file_name = talloc_asprintf(tmp_ctx, "%s/krb5_libdefaults", path);
774 errno_t sss_write_krb5_conf_snippet(const char *path, bool canonicalize)
779 if (path != NULL && (*path == '\0' || strcasecmp(path, "none") == 0)) {
780 DEBUG(SSSDBG_TRACE_FUNC, "Empty path, nothing to do.\n");
784 if (path == NULL || *path != '/') {
785 DEBUG(SSSDBG_CRIT_FAILURE, "Invalid or missing path [%s]-\n",
786 path == NULL ? "missing" : path);
790 ret = sss_write_krb5_localauth_snippet(path);
797 ret = sss_write_krb5_libdefaults_snippet(path);