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

« back to all changes in this revision

Viewing changes to src/lib/token.c

  • Committer: Bazaar Package Importer
  • Author(s): Paul Hampson
  • Date: 2004-12-29 20:19:42 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041229201942-uj2e95la965uthc7
Tags: 1.0.1-2
* freeradius-dialupadmin Suggests php4-mysql | php4-pgsql
   Closes: #279419
* Added a two-second pause to restart in init.d script
   Closes: #262635
* FreeRADIUS module packages now depend on the same source
  version of the main FreeRADIUS package.
   Closes: #284353
* FreeRADIUS-dialupadmin's default paths in admin.conf are
  now correct.
   Closes: #280942
* FreeRADIUS-dialupadmin's help.php3 can now find README.
   Closes: #280941
* Fixes stolen from 1.0.2 CVS:
  - Bug fix to make udpfromto code work
  - radrelay shouldn't dump core if it can't read a VP from the
    detail file.
  - Only initialize the random pool once.
  - In rlm_sql, don't escape characters twice.
  - In rlm_ldap, only claim Auth-Type if a plain text password is present.
  - Locking fixes in threading code
  - Fix building on gcc-4.0 by not trying to access static auth_port from
    other files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * token.c      Read the next token from a string.
3
3
 *              Yes it's pretty primitive but effective.
4
4
 *
5
 
 * Version:     $Id: token.c,v 1.16.2.1 2003/09/16 18:34:37 phampson Exp $
 
5
 * Version:     $Id: token.c,v 1.17 2003/09/12 19:25:29 phampson Exp $
6
6
 *
7
7
 *   This library is free software; you can redistribute it and/or
8
8
 *   modify it under the terms of the GNU Lesser General Public
27
27
#include <ctype.h>
28
28
#include "token.h"
29
29
 
30
 
static const char rcsid[] = "$Id: token.c,v 1.16.2.1 2003/09/16 18:34:37 phampson Exp $";
 
30
static const char rcsid[] = "$Id: token.c,v 1.17 2003/09/12 19:25:29 phampson Exp $";
31
31
 
32
32
static const LRAD_NAME_NUMBER tokens[] = {
33
33
        { "=~", T_OP_REG_EQ,    }, /* order is important! */