Commit ba476aa3 authored by Richard Levitte's avatar Richard Levitte
Browse files

OSSL_STORE: spell error reason correctly

parent 346bf1a2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2004,7 +2004,7 @@ OSSL_STORE_R_UI_PROCESS_INTERRUPTED_OR_CANCELLED:109:\
	ui process interrupted or cancelled
OSSL_STORE_R_UNREGISTERED_SCHEME:105:unregistered scheme
OSSL_STORE_R_UNSUPPORTED_CONTENT_TYPE:110:unsupported content type
OSSL_STORE_R_URI_AUTHORITY_UNSUPPORED:111:uri authority unsuppored
OSSL_STORE_R_URI_AUTHORITY_UNSUPPORTED:111:uri authority unsupported
PEM_R_BAD_BASE64_DECODE:100:bad base64 decode
PEM_R_BAD_DECRYPT:101:bad decrypt
PEM_R_BAD_END_LINE:102:bad end line
+1 −1
Original line number Diff line number Diff line
@@ -755,7 +755,7 @@ static OSSL_STORE_LOADER_CTX *file_open(const OSSL_STORE_LOADER *loader,
            path = &uri[5];
        } else {
            OSSL_STOREerr(OSSL_STORE_F_FILE_OPEN,
                          OSSL_STORE_R_URI_AUTHORITY_UNSUPPORED);
                          OSSL_STORE_R_URI_AUTHORITY_UNSUPPORTED);
            return NULL;
        }

+2 −2
Original line number Diff line number Diff line
@@ -104,8 +104,8 @@ static const ERR_STRING_DATA OSSL_STORE_str_reasons[] = {
    "unregistered scheme"},
    {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_UNSUPPORTED_CONTENT_TYPE),
    "unsupported content type"},
    {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_URI_AUTHORITY_UNSUPPORED),
    "uri authority unsuppored"},
    {ERR_PACK(ERR_LIB_OSSL_STORE, 0, OSSL_STORE_R_URI_AUTHORITY_UNSUPPORTED),
    "uri authority unsupported"},
    {0, NULL}
};

+1 −1
Original line number Diff line number Diff line
@@ -73,6 +73,6 @@ int ERR_load_OSSL_STORE_strings(void);
# define OSSL_STORE_R_UI_PROCESS_INTERRUPTED_OR_CANCELLED 109
# define OSSL_STORE_R_UNREGISTERED_SCHEME                 105
# define OSSL_STORE_R_UNSUPPORTED_CONTENT_TYPE            110
# define OSSL_STORE_R_URI_AUTHORITY_UNSUPPORED            111
# define OSSL_STORE_R_URI_AUTHORITY_UNSUPPORTED           111

#endif