mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-20 00:30:20 +00:00
Resolve some pointer signedness compiler warnings in app_osplookup, and
constify a bunch of usage strings for CLI commands. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48307 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -146,7 +146,7 @@ struct osp_provider {
|
||||
|
||||
/* Call ID */
|
||||
struct osp_callid {
|
||||
char buf[OSPC_CALLID_MAXSIZE]; /* Call ID string */
|
||||
unsigned char buf[OSPC_CALLID_MAXSIZE]; /* Call ID string */
|
||||
unsigned int len; /* Call ID length */
|
||||
};
|
||||
|
||||
@@ -2159,7 +2159,7 @@ static const char* descrip4 =
|
||||
" OSPFINISHSTATUS The status of the OSP Finish attempt as a text string, one of\n"
|
||||
" SUCCESS | FAILED | ERROR \n";
|
||||
|
||||
static char osp_usage[] =
|
||||
static const char osp_usage[] =
|
||||
"Usage: osp show\n"
|
||||
" Displays information on Open Settlement Protocol support\n";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user