Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-server-http-db-auth
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
libdap-server-http-db-auth
Compare revisions
6721535cf4d0734a3305ccabc3f3b61f8adec902 to fe5e400dfcdb695e44b6e1ba9cd2005aea28e590
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
cellframe/libdap-server-http-db-auth
Select target project
No results found
fe5e400dfcdb695e44b6e1ba9cd2005aea28e590
Select Git revision
Branches
bugs-2706
bugs-2791
feature-2236
features-4171
master
Swap
Target
cellframe/libdap-server-http-db-auth
Select target project
cellframe/libdap-server-http-db-auth
1 result
6721535cf4d0734a3305ccabc3f3b61f8adec902
Select Git revision
Branches
bugs-2706
bugs-2791
feature-2236
features-4171
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
[*] Ignore if no domains
· fe5e400d
Dmitriy A. Gerasimov
authored
5 years ago
fe5e400d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/db_auth.c
+3
-3
3 additions, 3 deletions
src/db_auth.c
with
3 additions
and
3 deletions
src/db_auth.c
View file @
fe5e400d
...
...
@@ -609,7 +609,7 @@ int db_auth_login(const char* login, const char* password,
if
(
mongoc_cursor_next
(
cursor_dap_domains
,
(
const
bson_t
**
)
&
doc_dap_domain
)
==
false
)
{
log_it
(
L_WARNING
,
"Login Error! "
"Domain not found in DataBase (collection dap_domains)"
);
"Domain
s
not found in DataBase (collection dap_domains)"
);
b_error
=
true
;
}
...
...
@@ -620,8 +620,8 @@ int db_auth_login(const char* login, const char* password,
bson_destroy
(
doc_dap_domain
);
mongoc_collection_destroy
(
collection_dap_domain
);
if
(
b_error
)
return
0
;
//
if(b_error)
//
return 0;
}
log_it
(
L_INFO
,
"Login accepted"
);
...
...
This diff is collapsed.
Click to expand it.