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 centrallix/cxss/cxss_credentials_db.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include <sqlite3.h>
#include "cxss/credentials_db.h"
#include "cxss/util.h"
#include "cxlib/mtsession.h"

/* Private functions (credentials_db) */
static int cxss_i_SetupCredentialsDatabase(CXSS_DB_Context_t dbcontext);
Expand Down Expand Up @@ -1043,4 +1044,3 @@ cxss_i_FinalizeSqliteStatements(CXSS_DB_Context_t dbcontext)
sqlite3_finalize(dbcontext->update_resc_stmt);
sqlite3_finalize(dbcontext->delete_resc_stmt);
}

2 changes: 1 addition & 1 deletion centrallix/cxss/cxss_crypto.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <openssl/pem.h>
#include "cxss/crypto.h"
#include "cxss/credentials_db.h"
#include "cxlib/mtsession.h"

static bool CSPRNG_Initialized = false;

Expand Down Expand Up @@ -502,4 +503,3 @@ cxssDestroyKey(char *key, size_t keylength)
free(key);
}
}

2 changes: 1 addition & 1 deletion centrallix/cxss/cxss_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <string.h>
#include <time.h>
#include "cxss/util.h"
#include "cxlib/mtsession.h"

/** @brief Duplicate a string
*
Expand Down Expand Up @@ -84,4 +85,3 @@ cxssGetTimestamp(void)
}
return timestamp;
}

2 changes: 1 addition & 1 deletion centrallix/objectsystem/obj_content.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <fcntl.h>
#include "obj.h"
#include "cxlib/mtask.h"
#include "cxlib/mtsession.h"
#include "cxlib/xarray.h"
#include "cxlib/xhash.h"
#include "cxlib/magic.h"
Expand Down Expand Up @@ -88,4 +89,3 @@ objWrite(pObject this, char* buffer, int cnt, int offset, int flags)
}
return this->Driver->Write(this->Data, buffer, cnt, offset, flags, &(this->Session->Trx));
}

2 changes: 1 addition & 1 deletion centrallix/objectsystem/obj_session.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <fcntl.h>
#include "obj.h"
#include "cxlib/mtask.h"
#include "cxlib/mtsession.h"
#include "cxlib/xarray.h"
#include "cxlib/xhash.h"
#include "cxlib/magic.h"
Expand Down Expand Up @@ -257,4 +258,3 @@ objResumeTransaction(pObjSession this, pObjTrxTree trx)

return 0;
}

2 changes: 1 addition & 1 deletion centrallix/osdrivers/objdrv_shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <fcntl.h>
#include "obj.h"
#include "cxlib/mtask.h"
#include "cxlib/mtsession.h"
#include "cxlib/xarray.h"
#include "cxlib/xhash.h"
#include "stparse.h"
Expand Down Expand Up @@ -1254,4 +1255,3 @@ MODULE_PREFIX("shl");
MODULE_DESC("SHL ObjectSystem Driver");
MODULE_VERSION(0,1,0);
MODULE_IFACE(CX_CURRENT_IFACE);

3 changes: 1 addition & 2 deletions centrallix/utility/obfuscate.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "cxlib/mtask.h"
#include "cxlib/strtcpy.h"
#include "cxlib/mtlexer.h"
#include "cxlib/mtsession.h"
#include "cxlib/xhash.h"
#include "obj.h"
#include "cxss/cxss.h"
Expand Down Expand Up @@ -1371,5 +1372,3 @@ obfObfuscateDataSess(pObfSession sess, pObjData srcval, pObjData dstval, int dat

return rval;
}


2 changes: 1 addition & 1 deletion centrallix/utility/param.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "cxlib/strtcpy.h"
#include "cxlib/newmalloc.h"
#include "cxlib/datatypes.h"
#include "cxlib/mtsession.h"
#include "stparse.h"
#include "stparse_ne.h"
#include "param.h"
Expand Down Expand Up @@ -414,4 +415,3 @@ paramGetValue(pParam param, int datatype, pObjData value)

return paramGetValueUntyped(param, value);
}

2 changes: 1 addition & 1 deletion centrallix/utility/ptod.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <string.h>
#include "cxlib/datatypes.h"
#include "cxlib/newmalloc.h"
#include "cxlib/mtsession.h"
#include "ptod.h"
#include "obj.h"

Expand Down Expand Up @@ -303,4 +304,3 @@ ptodTypeOf(pTObjData ptod)
{
return ptod->DataType;
}

1 change: 1 addition & 0 deletions centrallix/wgtr/apos.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
#include "apos.h"
#include "cxlib/xarray.h"
#include "cxlib/datatypes.h"
#include "cxlib/mtsession.h"

int
aposInit()
Expand Down
1 change: 1 addition & 0 deletions centrallix/wgtr/wgtr.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
#include "cxlib/magic.h"
#include "cxlib/xhash.h"
#include "cxlib/strtcpy.h"
#include "cxlib/mtsession.h"
#include "ht_render.h"

#define WGTR_MAX_PARAMS (24)
Expand Down