Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
4ef02c6b
...
4ef02c6bf4306d3bb868e80f221f3536ca01cdd4
authored
2007-02-27 16:11:06 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Actually set quota if it is available
1 parent
91ddac61
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
auth/sql.c
auth/sql.c
View file @
4ef02c6
...
...
@@ -377,7 +377,7 @@ decode_tuple_new (mu_sql_connection_t conn, int n,
char
*
p
;
uid_t
uid
;
gid_t
gid
;
if
(
get_field
(
conn
,
MU_AUTH_NAME
,
&
name
,
1
)
||
get_field
(
conn
,
MU_AUTH_PASSWD
,
&
passwd
,
1
)
||
get_field
(
conn
,
MU_AUTH_UID
,
&
suid
,
1
)
...
...
@@ -467,6 +467,8 @@ decode_tuple_new (mu_sql_connection_t conn, int n,
shell
,
mailbox_name
,
1
);
if
(
rc
==
0
)
mu_auth_data_set_quota
(
*
return_data
,
quota
);
free
(
mailbox_name
);
return
rc
;
...
...
Please
register
or
sign in
to post a comment