~ubuntu-branches/ubuntu/hardy/freeradius/hardy-proposed

« back to all changes in this revision

Viewing changes to src/modules/rlm_expr/rlm_expr.c

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2006-12-16 20:45:11 UTC
  • mfrom: (3.1.10 feisty)
  • Revision ID: james.westby@ubuntu.com-20061216204511-3pbbsu4s8jtehsor
Tags: 1.1.3-3
Fix POSIX compliance problem in init script.  Closes: #403384. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * rlm_expr.c
3
3
 *
4
 
 * Version:     $Id: rlm_expr.c,v 1.7 2004/02/26 19:04:32 aland Exp $
 
4
 * Version:     $Id: rlm_expr.c,v 1.7.2.1 2005/08/24 14:37:52 nbk Exp $
5
5
 *
6
6
 *   This program is free software; you can redistribute it and/or modify
7
7
 *   it under the terms of the GNU General Public License as published by
32
32
#include "modules.h"
33
33
#include "conffile.h"
34
34
 
35
 
static const char rcsid[] = "$Id: rlm_expr.c,v 1.7 2004/02/26 19:04:32 aland Exp $";
 
35
static const char rcsid[] = "$Id: rlm_expr.c,v 1.7.2.1 2005/08/24 14:37:52 nbk Exp $";
36
36
 
37
37
/*
38
38
 *      Define a structure for our module configuration.
74
74
static int get_number(REQUEST *request, const char **string, int *answer)
75
75
{
76
76
        int             i, found;
77
 
        uint32_t        result, x;
 
77
        uint32_t        result;
 
78
        int             x;
78
79
        const char      *p;
79
80
        expr_token_t    this;
80
81