Mercurial > trustbridge
view common/errorcodes.h @ 150:a99339d0dce8
Fix test for invalid instructions
The missing line break made it invalid_input and not an
instruction.
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Mon, 24 Mar 2014 17:23:42 +0000 |
parents | fc9af77b06b9 |
children | 0df62decff90 |
line wrap: on
line source
#ifndef ERRORCODES_H #define ERRORCODES_H /* No begin certificate / end certificate could be found */ #define ERR_INVALID_INPUT_NO_LIST 2 /* Too much input for the installer process */ #define ERR_TOO_MUCH_INPUT 3 /* Invalid signature */ #define ERR_INVALID_SIGNATURE 4 /* No instructions */ #define ERR_NO_INSTRUCTIONS 5 /* Instructions not valid (certs not part of certificate list) */ #define ERR_INVALID_INSTRUCTIONS 6 /* Failed to access specified store */ #define ERR_STORE_ACCESS_DENIED 7 /* Failed to add certificate to store */ #define ERR_STORE_ADD_FAILURE 7 /* Generic invalid input */ #define ERR_INVALID_INPUT 8 /*********************************************************************** * mozilla specific errors and warnings * errors range from 0x0081 to 0x08F * warnings from 0x0091 to 0x0098 * Warnings might be ORed together ... */ /* Warning: Failed to read profile.ini */ #define WARN_MOZ_FAILED_TO_OPEN_INI 0x0091 /* Warning: Some profile paths from profile.ini don't exist */ #define WARN_MOZ_PROFILE_DOES_NOT_EXIST 0x0092 #endif