~ubuntu-branches/ubuntu/oneiric/nginx/oneiric

« back to all changes in this revision

Viewing changes to src/os/unix/ngx_user.c

  • Committer: Bazaar Package Importer
  • Author(s): Kartik Mistry
  • Date: 2011-06-01 19:12:25 UTC
  • mfrom: (4.2.33 sid)
  • Revision ID: james.westby@ubuntu.com-20110601191225-8gzfabmbwlwj758m
Tags: 1.0.4-1
* New upstream release
* debian/*.lintian-overrides, debian/rules:
  + Removed unused lintian for missing manpages

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#if (NGX_HAVE_GNU_CRYPT_R)
24
24
 
25
25
ngx_int_t
26
 
ngx_crypt(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted)
 
26
ngx_libc_crypt(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted)
27
27
{
28
28
    char               *value;
29
29
    size_t              len;
58
58
#else
59
59
 
60
60
ngx_int_t
61
 
ngx_crypt(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted)
 
61
ngx_libc_crypt(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted)
62
62
{
63
63
    char       *value;
64
64
    size_t      len;