summaryrefslogtreecommitdiffstats
path: root/database/sqlite/administration/useraccount.c
diff options
context:
space:
mode:
Diffstat (limited to 'database/sqlite/administration/useraccount.c')
-rw-r--r--database/sqlite/administration/useraccount.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/database/sqlite/administration/useraccount.c b/database/sqlite/administration/useraccount.c
index c33abcd..0571d98 100644
--- a/database/sqlite/administration/useraccount.c
+++ b/database/sqlite/administration/useraccount.c
@@ -239,7 +239,7 @@ static xmlDoc *useracc_view(eurephiaCTX *ctx, unsigned int infoType,
" WHERE uid = '%i' ORDER BY login, logout", uid);
if( qres == NULL ) {
- eurephia_log(ctx, LOG_ERROR, 0, "Quering the lastlog failed");
+ eurephia_log(ctx, LOG_ERROR, 0, "Querying the lastlog failed");
xmlFreeDoc(doc);
return eurephiaXML_ResultMsg(ctx, exmlERROR, NULL,
"Failed to query the lastlog");
@@ -304,7 +304,7 @@ static xmlDoc *useracc_view(eurephiaCTX *ctx, unsigned int infoType,
" WHERE username = '%q'", username);
if( (qres == NULL) || (sqlite_get_numtuples(qres) > 1) ) {
- eurephia_log(ctx, LOG_ERROR, 0, "Quering for login attempts failed");
+ eurephia_log(ctx, LOG_ERROR, 0, "Querying for login attempts failed");
sqlite_free_results(qres);
xmlFreeDoc(doc);
return eurephiaXML_ResultMsg(ctx, exmlERROR, NULL,
@@ -332,7 +332,7 @@ static xmlDoc *useracc_view(eurephiaCTX *ctx, unsigned int infoType,
" WHERE username = '%q'", username);
if( (qres == NULL) || (sqlite_get_numtuples(qres) > 1) ) {
- eurephia_log(ctx, LOG_ERROR, 0, "Quering blacklist log failed");
+ eurephia_log(ctx, LOG_ERROR, 0, "Querying blacklist log failed");
sqlite_free_results(qres);
xmlFreeDoc(doc);
return eurephiaXML_ResultMsg(ctx, exmlERROR, NULL,