cancel
Showing results for 
Search instead for 
Did you mean: 

ASA 12 dbtools.h missing enum identifier

Former Member
0 Kudos
2,087

In the ASA 12 dbtools.h, it appears that two enum identifiers are missing? a_db_version and a_chkpt_log_type

Under ASA 11 dbtools.h, you had this...

typedef enum {
    BACKUP_CHKPT_LOG_COPY = 0,
    BACKUP_CHKPT_LOG_NOCOPY,
    BACKUP_CHKPT_LOG_RECOVER,
    BACKUP_CHKPT_LOG_AUTO,
    BACKUP_CHKPT_LOG_DEFAULT
} a_chkpt_log_type;
typedef enum {
    VERSION_UNKNOWN,
    VERSION_PRE_10,
    VERSION_10,
    VERSION_11
} a_db_version;

Under ASA12 you get this....

enum {
    BACKUP_CHKPT_LOG_COPY = 0,
    BACKUP_CHKPT_LOG_NOCOPY,
    BACKUP_CHKPT_LOG_RECOVER,
    BACKUP_CHKPT_LOG_AUTO,
    BACKUP_CHKPT_LOG_DEFAULT
};

enum {
    VERSION_UNKNOWN = 0,
    VERSION_PRE_10 = 9,
    VERSION_10 = 10,
    VERSION_11 = 11,
    VERSION_12 = 12
};

Am I missing somthing? I have ASA 12.00.00.2483 Thanks. Jerry

Accepted Solutions (0)

Answers (1)

Answers (1)

jeff_albion
Advisor
Advisor
0 Kudos

This is correct. These structures are also documented differently between version 11 and 12:

You will also notice in the version 12 documentation there are other enumerations: