~ubuntu-branches/ubuntu/dapper/freeradius/dapper-updates

« back to all changes in this revision

Viewing changes to src/lib/crypt.c

  • Committer: Bazaar Package Importer
  • Author(s): Paul Hampson
  • Date: 2005-06-27 03:13:48 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050627031348-tu393q64vdle45ah
Tags: 1.0.4-2
* Fix my email address in the dpatches
* Remove extraneous ^g from man/man5/clients.conf.5
  - Created 04_bonus_control_code_in_clients_conf_5
* Correct handing of parameterless call of init script, and
  general init script neatening
  (Thanks to Derrick Karpo)
  Closes: #315438
* Correctly leave out the .in files in the examples
* Correctly use debhelper after splitting binary make target
  into binary-arch and binary-indep.
  (Thanks to Kurt Roeckx for actually hitting the bug)
  Closes: #315770
* Steal fix from CVS release_1_0 tree for rlm_sql quoted values.
  (Thanks to Nicolas Baradakis for the fix)
  - Upstream bugzilla #242, src/modules/rlm_sql/sql.c 1.79.2.2
  - Created 05_unbreak_quoted_sql_values

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
        /*
50
50
         *      Ensure we're thread-safe, as crypt() isn't.
51
51
         */
52
 
        if (!lrad_crypt_init == 0) {
 
52
        if (lrad_crypt_init == 0) {
53
53
                pthread_mutex_init(&lrad_crypt_mutex, NULL);
54
54
                lrad_crypt_init = 1;
55
55
        }