Skip to content

Commit

Permalink
uid_auth_db: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dilyanpalauzov authored and miconda committed Jun 12, 2023
1 parent 3c66eeb commit cf1834c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/modules/uid_auth_db/authorize.c
Expand Up @@ -216,7 +216,7 @@ static int generate_avps(db_res_t *result, db_rec_t *row)
}

/* this is a dirty work around to check the credentials of all users,
* if the database query returned more then one result
* if the database query returned more than one result
*
* Fills res (which must be db_free'd afterwards if the call was successful)
* returns 0 on success, 1 on no match (?)
Expand Down
2 changes: 1 addition & 1 deletion src/modules/uid_auth_db/doc/params.xml
Expand Up @@ -167,7 +167,7 @@ modparam("auth_db", "plain_password_column", "password")
of column holding pre-calculated HA1 string that were calculated
including the domain in the username. This parameter is used only
when <varname>calculate_ha1</varname> is set to 0 and user agent
send a credentials containing the domain in the username.
sends credentials containing the domain in the username.
</para>
<para>
Default value of the parameter is ha1b.
Expand Down
2 changes: 1 addition & 1 deletion src/modules/uid_auth_db/doc/uid_auth_db.xml
Expand Up @@ -46,7 +46,7 @@
<section id="uid_auth_db.dep">
<title>Dependencies</title>
<para>
The module depends on the following modules (in the other words the listed modules
The module depends on the following modules (in other words the listed modules
must be loaded before this module):
<itemizedlist>
<listitem>
Expand Down
2 changes: 1 addition & 1 deletion src/modules/uid_auth_db/uid_auth_db_mod.c
Expand Up @@ -328,7 +328,7 @@ static authdb_table_info_t *register_table(str *table)
memcpy(info->table.s, table->s, table->len);
info->table.s[table->len] = 0;

/* append to the begining (we don't care about order) */
/* append to the beginning (we don't care about order) */
info->next = registered_tables;
registered_tables = info;

Expand Down

0 comments on commit cf1834c

Please sign in to comment.