mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
crypt_r.c: adjust style
* missing/crypt_r.c: adjust style to BSD as the original. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55238 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3c31685e11
commit
6593e0fe54
1 changed files with 5 additions and 5 deletions
|
@ -313,7 +313,7 @@ static struct crypt_data default_crypt_data;
|
|||
char *
|
||||
crypt(const char *key, const char *setting)
|
||||
{
|
||||
return crypt_r(key, setting, &default_crypt_data);
|
||||
return crypt_r(key, setting, &default_crypt_data);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -413,7 +413,7 @@ crypt_r(const char *key, const char *setting, struct crypt_data *data)
|
|||
void
|
||||
des_setkey(const char *key)
|
||||
{
|
||||
des_setkey_r(key, &default_crypt_data);
|
||||
des_setkey_r(key, &default_crypt_data);
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -452,7 +452,7 @@ des_setkey_r(const char *key, struct crypt_data *data)
|
|||
void
|
||||
des_cipher(const char *in, char *out, long salt, int num_iter)
|
||||
{
|
||||
des_cipher_r(in, out, salt, num_iter, &default_crypt_data);
|
||||
des_cipher_r(in, out, salt, num_iter, &default_crypt_data);
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -740,7 +740,7 @@ init_perm(C_block perm[64/CHUNKBITS][1<<CHUNKBITS],
|
|||
void
|
||||
setkey(const char *key)
|
||||
{
|
||||
setkey_r(key, &default_crypt_data);
|
||||
setkey_r(key, &default_crypt_data);
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -766,7 +766,7 @@ setkey_r(const char *key, struct crypt_data *data)
|
|||
void
|
||||
encrypt(char *block, int flag)
|
||||
{
|
||||
encrypt_r(block, flag, &default_crypt_data);
|
||||
encrypt_r(block, flag, &default_crypt_data);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue