Skip to content

Commit

Permalink
xml_int/mod_xml_rpc: const compiler errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dilyanpalauzov authored and andywolk committed Jun 25, 2024
1 parent f850f83 commit 77cc2a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mod/xml_int/mod_xml_rpc/mod_xml_rpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ static abyss_bool user_attributes(const char *user, const char *domain_name,
static abyss_bool is_authorized(const TSession * r, const char *command)
{
char *user = NULL, *domain_name = NULL;
char *allowed_commands = NULL;
const char *allowed_commands = NULL;
char *dp;
char *dup = NULL;
char *argv[256] = { 0 };
Expand Down Expand Up @@ -922,7 +922,7 @@ abyss_bool handler_hook(TSession * r)
if (len > 0) {
int succeeded = TRUE;
char *qp = qbuf;
char *readError;
const char *readError;

do {
int blen = r->connP->buffersize - r->connP->bufferpos;
Expand Down

0 comments on commit 77cc2a1

Please sign in to comment.