diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2017-02-18 09:02:09 +1300 |
---|---|---|
committer | Garming Sam <garming@samba.org> | 2017-02-22 08:26:24 +0100 |
commit | 43421364ac980763402f0275daab80866df51ec2 (patch) | |
tree | c2454ab69d650a988c72e60a0ab21d11af17fa82 | |
parent | 8de5c2e9675c48ba9de868c571c191a29a2fd5e6 (diff) | |
download | samba-43421364ac980763402f0275daab80866df51ec2.tar.gz |
Correct "allready" typos.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
-rw-r--r-- | source3/smbd/ntquotas.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/ntquotas.c b/source3/smbd/ntquotas.c index 4acfa5057ed..8a44f7c674a 100644 --- a/source3/smbd/ntquotas.c +++ b/source3/smbd/ntquotas.c @@ -139,7 +139,7 @@ int vfs_set_ntquota(files_struct *fsp, enum SMB_QUOTA_TYPE qtype, struct dom_sid return ret; } -static bool allready_in_quota_list(SMB_NTQUOTA_LIST *qt_list, uid_t uid) +static bool already_in_quota_list(SMB_NTQUOTA_LIST *qt_list, uid_t uid) { SMB_NTQUOTA_LIST *tmp_list = NULL; @@ -179,8 +179,8 @@ int vfs_get_user_ntquota_list(files_struct *fsp, SMB_NTQUOTA_LIST **qt_list) ZERO_STRUCT(tmp_qt); - if (allready_in_quota_list((*qt_list),usr->pw_uid)) { - DEBUG(5,("record for uid[%ld] allready in the list\n",(long)usr->pw_uid)); + if (already_in_quota_list((*qt_list),usr->pw_uid)) { + DEBUG(5,("record for uid[%ld] already in the list\n",(long)usr->pw_uid)); continue; } |