Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion binsrc/virtuoso/viconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -1342,7 +1342,7 @@ cfg_setup (void)
{
v32 = INT32_MAX;
if (cfg_getsize (pconfig, section, sd->sd_name, &v) != -1 ||
cfg_getlong (pconfig, section, sd->sd_name, &v32) != -1) /* this is for cases of negative flags or zero */
cfg_getlong (pconfig, section, sd->sd_name, &v32) != -1) /* this is for cases of zero or negative flags */
{
if (v32 != INT32_MAX)
v = v32;
Expand Down
2 changes: 1 addition & 1 deletion libsrc/Wi/extent.c
Original file line number Diff line number Diff line change
Expand Up @@ -1520,7 +1520,7 @@ em_compact (extent_map_t * em, int free_em)
page_set_checksum_init ((db_buf_t) array);
if (EXT_INDEX == EXT_TYPE (ext))
{
/* when dropping a column extent map in a drop index, cpt remaps are possible, so if any, drop them. The remap pagge is dropped anyway as part of the em */
/* when dropping a column extent map in a drop index, cpt remaps are possible, so drop any that exist. The remap page is dropped anyway as part of the em */
dp_addr_t dp2;
for (dp2 = dp; dp2 < dp + 32; dp2++)
remhash (DP_ADDR2VOID (dp2), em->em_dbs->dbs_cpt_remap);
Expand Down
2 changes: 1 addition & 1 deletion libsrc/Wi/http.c
Original file line number Diff line number Diff line change
Expand Up @@ -8842,7 +8842,7 @@ http_map_fill_cors_allow_headers (caddr_t option_value)
}
if (NULL == ht)
ht = id_strcase_hash_create (7);
if (h[0] != '!' || 0 == stricmp (h, "!ALL")) /* expilicitly added header, or all custom disabled */
if (h[0] != '!' || 0 == stricmp (h, "!ALL")) /* explicitly added header, or all custom disabled */
id_hash_set (ht, (caddr_t) &h, (caddr_t) &one);
else /* explicitly denied header */
{
Expand Down
6 changes: 3 additions & 3 deletions libsrc/Wi/srvstat.c
Original file line number Diff line number Diff line change
Expand Up @@ -2019,9 +2019,9 @@ stat_desc_t dbf_descs [] =


/*
* the following are ptrs of protected system wide params, once are set to a value greater than zero
* cannot be changed until server is running, also if they written in DB cfg page,
* cannot be changed even after server restart.
* the following are ptrs of protected system wide params: once they are set to a value greater than zero,
* they cannot be changed while server is running; also, if they are written in DB cfg page,
* they cannot be changed even after server restart.
*/
static void *
dbf_protected_params[] = {
Expand Down
2 changes: 1 addition & 1 deletion libsrc/util/ncfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ _cfg_freeimage (PCONFIG pconfig)
/*
* Partially re-initialize struct
*
* Dont reset the fileName and mtx fields
* Don't reset the fileName and mtx fields
*/
pconfig->image = NULL;
pconfig->entries = NULL;
Expand Down