aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_osplookup.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-06 07:39:39 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-06 07:39:39 +0000
commit43115b24195234a7f04c6230b2c00012eb88cfec (patch)
treea9681aab7dc3fbaae5d67817522a20cf24a30ffe /apps/app_osplookup.c
parent4299f89c9b8ff9391ad0b111b008bbe6a45d3cf5 (diff)
Resolve some pointer signedness compiler warnings in app_osplookup, and
constify a bunch of usage strings for CLI commands. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48307 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_osplookup.c')
-rw-r--r--apps/app_osplookup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_osplookup.c b/apps/app_osplookup.c
index 4bdc55a92..3adde50f2 100644
--- a/apps/app_osplookup.c
+++ b/apps/app_osplookup.c
@@ -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";