diff options
author | Dario Minnucci <midget@debian.org> | 2010-12-01 00:18:53 +0100 |
---|---|---|
committer | David Sommerseth <dazo@users.sourceforge.net> | 2010-12-01 00:18:53 +0100 |
commit | 35d84a44f2bec3754fca0604d8bb6a3a598b8441 (patch) | |
tree | 1cd2f8ec8f418b42cc0d8d148be5b53abdb6b1c0 /database/sqlite/administration/useraccount.c | |
parent | 05b5459c5b4451a457920449b6d1756adf6ca4dc (diff) | |
download | eurephia-35d84a44f2bec3754fca0604d8bb6a3a598b8441.tar.gz eurephia-35d84a44f2bec3754fca0604d8bb6a3a598b8441.tar.xz eurephia-35d84a44f2bec3754fca0604d8bb6a3a598b8441.zip |
Quick fix for typo 'Quering'
Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
Diffstat (limited to 'database/sqlite/administration/useraccount.c')
-rw-r--r-- | database/sqlite/administration/useraccount.c | 6 |
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, |