mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 04:11:08 +00:00
Merge "Fix 'statement' typo throughout code."
This commit is contained in:
@@ -664,7 +664,7 @@ EXTERN int setPERBufferUsingCtxt (OOCTXT* pTarget, OOCTXT* pSource);
|
|||||||
/**
|
/**
|
||||||
* This function adds an integer parameter to an error information structure.
|
* This function adds an integer parameter to an error information structure.
|
||||||
* Parameter substitution is done in much the same way as it is done in C
|
* Parameter substitution is done in much the same way as it is done in C
|
||||||
* printf statments. The base error message specification that goes along with
|
* printf statements. The base error message specification that goes along with
|
||||||
* a particular status code may have variable fields built in using '%'
|
* a particular status code may have variable fields built in using '%'
|
||||||
* modifiers. These would be replaced with actual parameter data.
|
* modifiers. These would be replaced with actual parameter data.
|
||||||
*
|
*
|
||||||
@@ -680,7 +680,7 @@ EXTERN int errAddIntParm (ASN1ErrInfo* pErrInfo, int errParm);
|
|||||||
/**
|
/**
|
||||||
* This function adds an string parameter to an error information structure.
|
* This function adds an string parameter to an error information structure.
|
||||||
* Parameter substitution is done in much the same way as it is done in C
|
* Parameter substitution is done in much the same way as it is done in C
|
||||||
* printf statments. The base error message specification that goes along with
|
* printf statements. The base error message specification that goes along with
|
||||||
* a particular status code may have variable fields built in using '%'
|
* a particular status code may have variable fields built in using '%'
|
||||||
* modifiers. These would be replaced with actual parameter data.
|
* modifiers. These would be replaced with actual parameter data.
|
||||||
*
|
*
|
||||||
@@ -697,7 +697,7 @@ EXTERN int errAddStrParm (ASN1ErrInfo* pErrInfo,
|
|||||||
/**
|
/**
|
||||||
* This function adds an unsigned integer parameter to an error information
|
* This function adds an unsigned integer parameter to an error information
|
||||||
* structure. Parameter substitution is done in much the same way as it is done
|
* structure. Parameter substitution is done in much the same way as it is done
|
||||||
* in C printf statments. The base error message specification that goes along
|
* in C printf statements. The base error message specification that goes along
|
||||||
* with a particular status code may have variable fields built in using '%'
|
* with a particular status code may have variable fields built in using '%'
|
||||||
* modifiers. These would be replaced with actual parameter data.
|
* modifiers. These would be replaced with actual parameter data.
|
||||||
*
|
*
|
||||||
|
@@ -189,8 +189,8 @@ static void clean_statements(void)
|
|||||||
|
|
||||||
static int init_statements(void)
|
static int init_statements(void)
|
||||||
{
|
{
|
||||||
/* Don't initialize create_astdb_statment here as the astdb table needs to exist
|
/* Don't initialize create_astdb_statement here as the astdb table needs to exist
|
||||||
* brefore these statments can be initialized */
|
* brefore these statements can be initialized */
|
||||||
return init_stmt(&get_stmt, get_stmt_sql, sizeof(get_stmt_sql))
|
return init_stmt(&get_stmt, get_stmt_sql, sizeof(get_stmt_sql))
|
||||||
|| init_stmt(&del_stmt, del_stmt_sql, sizeof(del_stmt_sql))
|
|| init_stmt(&del_stmt, del_stmt_sql, sizeof(del_stmt_sql))
|
||||||
|| init_stmt(&deltree_stmt, deltree_stmt_sql, sizeof(deltree_stmt_sql))
|
|| init_stmt(&deltree_stmt, deltree_stmt_sql, sizeof(deltree_stmt_sql))
|
||||||
@@ -345,7 +345,7 @@ int ast_db_put(const char *family, const char *key, const char *value)
|
|||||||
ast_log(LOG_WARNING, "Couldn't bind value to stmt: %s\n", sqlite3_errmsg(astdb));
|
ast_log(LOG_WARNING, "Couldn't bind value to stmt: %s\n", sqlite3_errmsg(astdb));
|
||||||
res = -1;
|
res = -1;
|
||||||
} else if (sqlite3_step(put_stmt) != SQLITE_DONE) {
|
} else if (sqlite3_step(put_stmt) != SQLITE_DONE) {
|
||||||
ast_log(LOG_WARNING, "Couldn't execute statment: %s\n", sqlite3_errmsg(astdb));
|
ast_log(LOG_WARNING, "Couldn't execute statement: %s\n", sqlite3_errmsg(astdb));
|
||||||
res = -1;
|
res = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -87,7 +87,7 @@ struct category_and_metric {
|
|||||||
int metric;
|
int metric;
|
||||||
const char *variable_name;
|
const char *variable_name;
|
||||||
const char *variable_value;
|
const char *variable_value;
|
||||||
int var_metric; /*!< For organizing variables (particularly includes and switch statments) within a context */
|
int var_metric; /*!< For organizing variables (particularly includes and switch statements) within a context */
|
||||||
};
|
};
|
||||||
|
|
||||||
/*! \brief Table configuration
|
/*! \brief Table configuration
|
||||||
@@ -1030,7 +1030,7 @@ static struct ast_variable *realtime_ldap(const char *basedn,
|
|||||||
|
|
||||||
/*! \brief See Asterisk doc
|
/*! \brief See Asterisk doc
|
||||||
*
|
*
|
||||||
* this function will be called for the switch statment if no match is found with the realtime_ldap function(i.e. it is a failover);
|
* this function will be called for the switch statement if no match is found with the realtime_ldap function(i.e. it is a failover);
|
||||||
* however, the ast_load_realtime wil match on wildcharacters also depending on what the mode is set to
|
* however, the ast_load_realtime wil match on wildcharacters also depending on what the mode is set to
|
||||||
* this is an area of asterisk that could do with a lot of modification
|
* this is an area of asterisk that could do with a lot of modification
|
||||||
* I think this function returns Realtime dynamic objects
|
* I think this function returns Realtime dynamic objects
|
||||||
|
@@ -93,7 +93,7 @@ static int db_put_raw(const char *key, size_t keylen, const char *value, size_t
|
|||||||
fprintf(stderr, "Couldn't bind value to stmt: %s\n", sqlite3_errmsg(astdb));
|
fprintf(stderr, "Couldn't bind value to stmt: %s\n", sqlite3_errmsg(astdb));
|
||||||
res = -1;
|
res = -1;
|
||||||
} else if (sqlite3_step(put_stmt) != SQLITE_DONE) {
|
} else if (sqlite3_step(put_stmt) != SQLITE_DONE) {
|
||||||
fprintf(stderr, "Couldn't execute statment: %s\n", sqlite3_errmsg(astdb));
|
fprintf(stderr, "Couldn't execute statement: %s\n", sqlite3_errmsg(astdb));
|
||||||
res = -1;
|
res = -1;
|
||||||
}
|
}
|
||||||
sqlite3_reset(put_stmt);
|
sqlite3_reset(put_stmt);
|
||||||
@@ -166,8 +166,8 @@ static int db_create_astdb(void)
|
|||||||
|
|
||||||
static int init_statements(void)
|
static int init_statements(void)
|
||||||
{
|
{
|
||||||
/* Don't initialize create_astdb_statment here as the astdb table needs to exist
|
/* Don't initialize create_astdb_statement here as the astdb table needs to exist
|
||||||
* brefore these statments can be initialized */
|
* brefore these statements can be initialized */
|
||||||
return init_stmt(&put_stmt, put_stmt_sql, sizeof(put_stmt_sql));
|
return init_stmt(&put_stmt, put_stmt_sql, sizeof(put_stmt_sql));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user