"dissect_ber_object_identifier_str" expects a "const char **" as its

last argument; make it so.

svn path=/trunk/; revision=16523
This commit is contained in:
Guy Harris 2005-11-17 04:47:41 +00:00
parent 378ebd81a6
commit 393ac45d83
2 changed files with 4 additions and 4 deletions

View File

@ -57,8 +57,8 @@ int proto_x411 = -1;
static struct SESSION_DATA_STRUCTURE* session = NULL;
static int extension_id = -1; /* integer extension id */
static char *object_identifier_id; /* extensions identifier */
static char *content_type_id; /* content type identifier */
static const char *object_identifier_id; /* extensions identifier */
static const char *content_type_id; /* content type identifier */
#define MAX_ORA_STR_LEN 256
static char *oraddress = NULL;

View File

@ -64,8 +64,8 @@ int proto_x411 = -1;
static struct SESSION_DATA_STRUCTURE* session = NULL;
static int extension_id = -1; /* integer extension id */
static char *object_identifier_id; /* extensions identifier */
static char *content_type_id; /* content type identifier */
static const char *object_identifier_id; /* extensions identifier */
static const char *content_type_id; /* content type identifier */
#define MAX_ORA_STR_LEN 256
static char *oraddress = NULL;