I have changed the configuration of the admin.conf file of the dialup_admin
to adopt to my freeradius and mysql server, but when i tried to access it in
my web browser, i can't see any button on the frame portion , in the left
side of the page. I could only see the "DIALUP ADMIN" when i browsed the
~/dialup_admin/htdocs/index.html.

TIA!

Bernie

----- Original Message ----- 
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, September 11, 2003 11:31 AM
Subject: Freeradius-Users digest, Vol 1 #2292 - 7 msgs


> Send Freeradius-Users mailing list submissions to
> [EMAIL PROTECTED]
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.cistron.nl/mailman/listinfo/freeradius-users
> or, via email, send a message with subject or body 'help' to
> [EMAIL PROTECTED]
>
> You can reach the person managing the list at
> [EMAIL PROTECTED]
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Freeradius-Users digest..."
>
>
> Today's Topics:
>
>    1. Freeradius + mysql + minicom Test ([EMAIL PROTECTED])
>    2. Question about 802.1x and Radius (kott m)
>    3. Re: Freeradius + mysql + minicom Test (Nicolas Baradakis)
>    4. src/lib/smbdes.c and src/modules/rlm_smb/smbdes.c (Nicolas
Baradakis)
>    5. dialup_admin installation (Bernie Liwanag)
>    6. Re: dialup_admin installation (Kostas Kalevras)
>    7. Re: GPL headers (Nicolas Baradakis)
>
> --__--__--
>
> Message: 1
> Date: Thu, 11 Sep 2003 01:17:41 -0300 (BRT)
> From: [EMAIL PROTECTED]
> To: [EMAIL PROTECTED]
> Subject: Freeradius + mysql + minicom Test
> Reply-To: [EMAIL PROTECTED]
>
> --27597504.1063253861949.JavaMail.nobody.brtdata-mail.brturbo.com
> Content-Type: text/plain; charset=ISO-8859-1
> Content-Transfer-Encoding: 7bit
>
> Hi list,
>
> sorry for my poor english (im Brasilian), well, i'm starting at freeradius
and mysql, i've installed freeradius + mysql following the
www.frontios.com/freeradius.html howto, seems all ok, localy with radtest
radius returns a message of OK using the table in mysql, but i want to test
the authentication and logging (radacct) with mysql. Well, i heard that this
test can be done with minicom + portslave localy, without the necessity of a
modem installed, it true? if .. someone that already have passed of this it
could help me?
>
> thanks! and sorry again...
>
> - Reinaldo Andrade
> Campo Grande - MS - Brasil
> --27597504.1063253861949.JavaMail.nobody.brtdata-mail.brturbo.com--
>
>
>
> --__--__--
>
> Message: 2
> Date: Thu, 11 Sep 2003 01:28:15 -0700 (PDT)
> From: kott m <[EMAIL PROTECTED]>
> Subject: Question about 802.1x and Radius
> To: [EMAIL PROTECTED]
> Reply-To: [EMAIL PROTECTED]
>
> --0-914124184-1063268895=:22557
> Content-Type: text/plain; charset=us-ascii
>
>
>
> Hello -
>
> I have a  few basic questions about 802.1x and Radius
>
> 1.In 802.1x , is the user/password transmitted from the Supplicant to the
Authenticator ?
>
> 2.If so what is the messages used for the same? Is it sent in Request and
Response ,message or is it encrypted in the MD5-challenge Response from the
supplicant?
>
> any info would be appreciated.I am developing a 802.1x stack and Radius
client for a switch.
>
> Thanks
>
> Kott
>
>
> ---------------------------------
> Do you Yahoo!?
> Yahoo! SiteBuilder - Free, easy-to-use web site design software
> --0-914124184-1063268895=:22557
> Content-Type: text/html; charset=us-ascii
>
> <DIV></DIV>
> <P>Hello -</P>
> <P>I have a&nbsp; few basic questions about 802.1x and Radius </P>
> <P>1.In 802.1x , is the user/password transmitted from the Supplicant to
the Authenticator ?</P>
> <P>2.If so what is the messages used for the same? Is it sent in Request
and Response ,message or is it encrypted in the MD5-challenge Response from
the supplicant?</P>
> <P>any info would be appreciated.I am developing a 802.1x stack and Radius
client for a switch.</P>
> <P>Thanks</P>
> <P>Kott</P><p><hr SIZE=1>
> Do you Yahoo!?<br>
> <a
href="http://us.rd.yahoo.com/evt=10469/*http://sitebuilder.yahoo.com";>Yahoo!
SiteBuilder</a> - Free, easy-to-use web site design software
> --0-914124184-1063268895=:22557--
>
>
> --__--__--
>
> Message: 3
> Date: Thu, 11 Sep 2003 10:51:58 +0200
> From: Nicolas Baradakis <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: Freeradius + mysql + minicom Test
> Reply-To: [EMAIL PROTECTED]
>
> En réponse à [EMAIL PROTECTED] :
>
> > sorry for my poor english (im Brasilian), well, i'm starting at
> > freeradius and mysql, i've installed freeradius + mysql following
> > the www.frontios.com/freeradius.html howto, seems all ok, localy
> > with radtest radius returns a message of OK using the table in
> > mysql, but i want to test the authentication and logging (radacct)
> > with mysql. Well, i heard that this test can be done with minicom +
> > portslave localy, without the necessity of a modem installed, it
> > true?  if .. someone that already have passed of this it could help
> > me?
>
> If I'm not misunderstanding, you just want to send accounting packets
> to you freeradius server and want to see whether accounting packets
> goes in your database.
>
> This simple script shell should be convenient. Just replace the IP
> address of your freeradius server (and the username / password /
> secret if you've changed the default configuration).
>
> #!/bin/sh
>
> # steve authenticates
> cat << EOF | radclient -x 172.16.16.17 auth testing123
> User-Name = steve
> User-Password = testing
> NAS-IP-Address = localhost
> NAS-Port = 0
> EOF
>
> # steve starts accounting
> cat << EOF | radclient -x 172.16.16.17 acct testing123
> NAS-IP-Address = localhost
> NAS-Port = 0
> NAS-Port-Type = 2
> User-Name = steve
> Acct-Status-Type = Start
> EOF
>
> # steve is doing something else
> sleep 1
>
> # steve stops accounting
> cat << EOF | radclient -x 172.16.16.17 acct testing123
> NAS-IP-Address = localhost
> NAS-Port = 0
> NAS-Port-Type = 2
> User-Name = steve
> Acct-Status-Type = Stop
> EOF
>
>
> -- 
> Nicolas Baradakis
>
>
> --__--__--
>
> Message: 4
> Date: Thu, 11 Sep 2003 11:56:03 +0200
> From: Nicolas Baradakis <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: src/lib/smbdes.c and src/modules/rlm_smb/smbdes.c
> Reply-To: [EMAIL PROTECTED]
>
> Maybe it's a anecdotic question, but...
>
> I noted there's 2 source files with the same name and with little
> differences. Is it in accordance with the expected behaviour ?
>
> -- 
> Nicolas Baradakis
>
>
> --__--__--
>
> Message: 5
> From: "Bernie Liwanag" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Subject: dialup_admin installation
> Date: Thu, 11 Sep 2003 11:00:10 +0100
> Reply-To: [EMAIL PROTECTED]
>
> This is a multi-part message in MIME format.
>
> ------=_NextPart_000_00C1_01C37853.DE94FAB0
> Content-Type: text/plain;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> Good day to all! Im new to freeradius and dialup_admin tool. I would =
> like to ask if someone can tell me the proper or detailed installation =
> guide and configuration of dialup_admin tool? I have setup the =
> freeradius and mysql on the same machine and tested it.its working fine! =
> However I can't configure the dialup_admin tool to run in my radius and =
> mysql server.Im using Red Hat 9, freeradius 0.8.1, mysql 4.
>
> TIA!
>
> ~Bernie
> ------=_NextPart_000_00C1_01C37853.DE94FAB0
> Content-Type: text/html;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <HTML><HEAD>
> <META http-equiv=3DContent-Type content=3D"text/html; =
> charset=3Diso-8859-1">
> <META content=3D"MSHTML 6.00.2800.1226" name=3DGENERATOR>
> <STYLE></STYLE>
> </HEAD>
> <BODY bgColor=3D#ffffff>
> <DIV><FONT face=3DArial size=3D2>Good day to all! Im new to freeradius =
> and=20
> dialup_admin tool. I would like to ask if someone can tell me the proper =
> or=20
> detailed installation guide and configuration of dialup_admin tool? I =
> have setup=20
> the freeradius and mysql on the same machine and tested it.its working =
> fine!=20
> However I can't&nbsp;configure the dialup_admin tool to run in my radius =
> and=20
> mysql server.Im using Red Hat 9, freeradius 0.8.1, mysql 4.</FONT></DIV>
> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
> <DIV><FONT face=3DArial size=3D2>TIA!</FONT></DIV>
> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
> <DIV>~Bernie</DIV></BODY></HTML>
>
> ------=_NextPart_000_00C1_01C37853.DE94FAB0--
>
>
>
>
> --__--__--
>
> Message: 6
> Date: Thu, 11 Sep 2003 13:04:58 +0300 (EEST)
> From: Kostas Kalevras <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: dialup_admin installation
> Reply-To: [EMAIL PROTECTED]
>
> On Thu, 11 Sep 2003, Bernie Liwanag wrote:
>
> > Good day to all! Im new to freeradius and dialup_admin tool. I would
like to ask if someone can tell me the proper or detailed installation guide
and configuration of dialup_admin tool? I have setup the freeradius and
mysql on the same machine and tested it.its working fine! However I can't
configure the dialup_admin tool to run in my radius and mysql server.Im
using Red Hat 9, freeradius 0.8.1, mysql 4.
>
> Take a look at the README file for dialupadmin and at
> http://kstadler.ch/index.php?topgroupid=1&subgroupid=14&groupid=11
>
>
> >
> > TIA!
> >
> > ~Bernie
>
> --
> Kostas Kalevras Network Operations Center
> [EMAIL PROTECTED] National Technical University of Athens, Greece
> Work Phone: +30 210 7721861
> 'Go back to the shadow' Gandalf
>
>
> --__--__--
>
> Message: 7
> Date: Thu, 11 Sep 2003 12:29:54 +0200
> From: Nicolas Baradakis <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Re: GPL headers
> Reply-To: [EMAIL PROTECTED]
>
> Paul Hampson wrote:
>
> [...]
>
> > >  /*
> > >   * rlm_acct_unique.c
> > >   *
> > > - *  This program is is free software; you can redistribute it and/or
modify
> > > + *  This program is free software; you can redistribute it and/or
modify
> > >   *  it under the terms of the GNU General Public License, version 2
if the
> > >   *  License as published by the Free Software Foundation.
> > >   *
> >
> > Is there a reason you let that (for example) "version 2 if the" ride
> > but fixed
>
> I'm an idiot. My script didn't grep the GPL header and I thought "oh
> there's a typo in the first line". But as you noticed the following
> lines are broken too.
>
> I've corrected this and made (once again) a new patch.
>
> $ cvs diff -u src/modules/rlm_acct_unique/rlm_acct_unique.c
src/modules/rlm_always/rlm_always.c
src/modules/rlm_attr_filter/rlm_attr_filter.c src/modules/rlm_dbm/rlm_dbm.c
src/modules/rlm_dbm/rlm_dbm_cat.c src/modules/rlm_dbm/rlm_dbm_parser.c
src/modules/rlm_detail/rlm_detail.c src/modules/rlm_unix/cache.c
src/modules/rlm_unix/compat.c
> Index: src/modules/rlm_acct_unique/rlm_acct_unique.c
> ===================================================================
> RCS file: /source/radiusd/src/modules/rlm_acct_unique/rlm_acct_unique.c,v
> retrieving revision 1.27
> diff -u -r1.27 rlm_acct_unique.c
> --- src/modules/rlm_acct_unique/rlm_acct_unique.c 3 Dec 2002
16:27:37 -0000 1.27
> +++ src/modules/rlm_acct_unique/rlm_acct_unique.c 11 Sep 2003
10:08:51 -0000
> @@ -1,18 +1,19 @@
>  /*
>   * rlm_acct_unique.c
>   *
> - *  This program is is free software; you can redistribute it and/or
modify
> - *  it under the terms of the GNU General Public License, version 2 if
the
> - *  License as published by the Free Software Foundation.
> - *
> - *  This program is distributed in the hope that it will be useful,
> - *  but WITHOUT ANY WARRANTY; without even the implied warranty of
> - *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> - *  GNU General Public License for more details.
> - *
> - *  You should have received a copy of the GNU General Public License
> - *  along with this program; if not, write to the Free Software
> - *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
USA.
> + *   This program is free software; you can redistribute it and/or modify
> + *   it under the terms of the GNU General Public License as published by
> + *   the Free Software Foundation; either version 2 of the License, or
> + *   (at your option) any later version.
> + *
> + *   This program is distributed in the hope that it will be useful,
> + *   but WITHOUT ANY WARRANTY; without even the implied warranty of
> + *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + *   GNU General Public License for more details.
> + *
> + *   You should have received a copy of the GNU General Public License
> + *   along with this program; if not, write to the Free Software
> + *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
USA
>   *
>   * Copyright 2000  The FreeRADIUS server project
>   */
> Index: src/modules/rlm_always/rlm_always.c
> ===================================================================
> RCS file: /source/radiusd/src/modules/rlm_always/rlm_always.c,v
> retrieving revision 1.10
> diff -u -r1.10 rlm_always.c
> --- src/modules/rlm_always/rlm_always.c 14 Jul 2003 17:27:34 -0000 1.10
> +++ src/modules/rlm_always/rlm_always.c 11 Sep 2003 10:08:51 -0000
> @@ -1,18 +1,19 @@
>  /*
>   * rlm_always.c
>   *
> - *  This program is is free software; you can redistribute it and/or
modify
> - *  it under the terms of the GNU General Public License, version 2 if
the
> - *  License as published by the Free Software Foundation.
> - *
> - *  This program is distributed in the hope that it will be useful,
> - *  but WITHOUT ANY WARRANTY; without even the implied warranty of
> - *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> - *  GNU General Public License for more details.
> - *
> - *  You should have received a copy of the GNU General Public License
> - *  along with this program; if not, write to the Free Software
> - *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
USA.
> + *   This program is free software; you can redistribute it and/or modify
> + *   it under the terms of the GNU General Public License as published by
> + *   the Free Software Foundation; either version 2 of the License, or
> + *   (at your option) any later version.
> + *
> + *   This program is distributed in the hope that it will be useful,
> + *   but WITHOUT ANY WARRANTY; without even the implied warranty of
> + *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + *   GNU General Public License for more details.
> + *
> + *   You should have received a copy of the GNU General Public License
> + *   along with this program; if not, write to the Free Software
> + *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
USA
>   *
>   * Copyright 2000  The FreeRADIUS server project
>   */
> Index: src/modules/rlm_attr_filter/rlm_attr_filter.c
> ===================================================================
> RCS file: /source/radiusd/src/modules/rlm_attr_filter/rlm_attr_filter.c,v
> retrieving revision 1.13
> diff -u -r1.13 rlm_attr_filter.c
> --- src/modules/rlm_attr_filter/rlm_attr_filter.c 7 Jul 2003
19:04:05 -0000 1.13
> +++ src/modules/rlm_attr_filter/rlm_attr_filter.c 11 Sep 2003
10:08:51 -0000
> @@ -5,15 +5,16 @@
>   *
>   * Version:      $Id: rlm_attr_filter.c,v 1.13 2003/07/07 19:04:05 aland
Exp $
>   *
> - *   This program is is free software; you can redistribute it and/or
modify
> - *   it under the terms of the GNU General Public License, version 2 if
the
> - *   License as published by the Free Software Foundation.
> - *
> + *   This program is free software; you can redistribute it and/or modify
> + *   it under the terms of the GNU General Public License as published by
> + *   the Free Software Foundation; either version 2 of the License, or
> + *   (at your option) any later version.
> + *
>   *   This program is distributed in the hope that it will be useful,
>   *   but WITHOUT ANY WARRANTY; without even the implied warranty of
>   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>   *   GNU General Public License for more details.
> - *
> + *
>   *   You should have received a copy of the GNU General Public License
>   *   along with this program; if not, write to the Free Software
>   *   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
> Index: src/modules/rlm_dbm/rlm_dbm.c
> ===================================================================
> RCS file: /source/radiusd/src/modules/rlm_dbm/rlm_dbm.c,v
> retrieving revision 1.6
> diff -u -r1.6 rlm_dbm.c
> --- src/modules/rlm_dbm/rlm_dbm.c 7 Jul 2003 19:05:14 -0000 1.6
> +++ src/modules/rlm_dbm/rlm_dbm.c 11 Sep 2003 10:08:51 -0000
> @@ -3,18 +3,22 @@
>   *
>   * Version:     $Id: rlm_dbm.c,v 1.6 2003/07/07 19:05:14 aland Exp $
>   *
> - *  This program is is free software; you can redistribute it and/or
modify
> - *  it under the terms of the GNU General Public License, version 2 if
the
> - *  License as published by the Free Software Foundation.
> + *   This program is free software; you can redistribute it and/or modify
> + *   it under the terms of the GNU General Public License as published by
> + *   the Free Software Foundation; either version 2 of the License, or
> + *   (at your option) any later version.
>   *
> - *  This program is distributed in the hope that it will be useful,
> - *  but WITHOUT ANY WARRANTY; without even the implied warranty of
> - *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> - *  GNU General Public License for more details.
> + *   This program is distributed in the hope that it will be useful,
> + *   but WITHOUT ANY WARRANTY; without even the implied warranty of
> + *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + *   GNU General Public License for more details.
>   *
> - *  Copyright 2001 Koulik Andrei, Sandy Service
> + *   You should have received a copy of the GNU General Public License
> + *   along with this program; if not, write to the Free Software
> + *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
USA
> + *
> + * Copyright 2001 Koulik Andrei, Sandy Service
>   */
> -
>
>  #include <string.h>
>  #include <stdlib.h>
> Index: src/modules/rlm_dbm/rlm_dbm_cat.c
> ===================================================================
> RCS file: /source/radiusd/src/modules/rlm_dbm/rlm_dbm_cat.c,v
> retrieving revision 1.6
> diff -u -r1.6 rlm_dbm_cat.c
> --- src/modules/rlm_dbm/rlm_dbm_cat.c 14 May 2003 08:48:12 -0000 1.6
> +++ src/modules/rlm_dbm/rlm_dbm_cat.c 11 Sep 2003 10:08:51 -0000
> @@ -3,17 +3,21 @@
>   *
>   * Version:     $Id: rlm_dbm_cat.c,v 1.6 2003/05/14 08:48:12 wichert Exp
$
>   *
> - *  This program is is free software; you can redistribute it and/or
modify
> - *  it under the terms of the GNU General Public License, version 2 if
the
> - *  License as published by the Free Software Foundation.
> + *   This program is free software; you can redistribute it and/or modify
> + *   it under the terms of the GNU General Public License as published by
> + *   the Free Software Foundation; either version 2 of the License, or
> + *   (at your option) any later version.
>   *
> - *  This program is distributed in the hope that it will be useful,
> - *  but WITHOUT ANY WARRANTY; without even the implied warranty of
> - *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> - *  GNU General Public License for more details.
> + *   This program is distributed in the hope that it will be useful,
> + *   but WITHOUT ANY WARRANTY; without even the implied warranty of
> + *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + *   GNU General Public License for more details.
>   *
> + *   You should have received a copy of the GNU General Public License
> + *   along with this program; if not, write to the Free Software
> + *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
USA
>   *
> - *  Copyright 2001 Koulik Andrei, Sandy Service
> + * Copyright 2001 Koulik Andrei, Sandy Service
>   */
>
>  #include "autoconf.h"
> Index: src/modules/rlm_dbm/rlm_dbm_parser.c
> ===================================================================
> RCS file: /source/radiusd/src/modules/rlm_dbm/rlm_dbm_parser.c,v
> retrieving revision 1.7
> diff -u -r1.7 rlm_dbm_parser.c
> --- src/modules/rlm_dbm/rlm_dbm_parser.c 26 Jun 2003 15:08:29 -0000 1.7
> +++ src/modules/rlm_dbm/rlm_dbm_parser.c 11 Sep 2003 10:08:51 -0000
> @@ -3,16 +3,21 @@
>   *
>   * Version:     $Id: rlm_dbm_parser.c,v 1.7 2003/06/26 15:08:29 aland Exp
$
>   *
> - *  This program is is free software; you can redistribute it and/or
modify
> - *  it under the terms of the GNU General Public License, version 2 if
the
> - *  License as published by the Free Software Foundation.
> + *   This program is free software; you can redistribute it and/or modify
> + *   it under the terms of the GNU General Public License as published by
> + *   the Free Software Foundation; either version 2 of the License, or
> + *   (at your option) any later version.
>   *
> - *  This program is distributed in the hope that it will be useful,
> - *  but WITHOUT ANY WARRANTY; without even the implied warranty of
> - *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> - *  GNU General Public License for more details.
> + *   This program is distributed in the hope that it will be useful,
> + *   but WITHOUT ANY WARRANTY; without even the implied warranty of
> + *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + *   GNU General Public License for more details.
>   *
> - *  Copyright 2001 Koulik Andrei, Sandy Service
> + *   You should have received a copy of the GNU General Public License
> + *   along with this program; if not, write to the Free Software
> + *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
USA
> + *
> + * Copyright 2001 Koulik Andrei, Sandy Service
>   */
>
>
> Index: src/modules/rlm_detail/rlm_detail.c
> ===================================================================
> RCS file: /source/radiusd/src/modules/rlm_detail/rlm_detail.c,v
> retrieving revision 1.31
> diff -u -r1.31 rlm_detail.c
> --- src/modules/rlm_detail/rlm_detail.c 11 Aug 2003 17:06:51 -0000 1.31
> +++ src/modules/rlm_detail/rlm_detail.c 11 Sep 2003 10:08:51 -0000
> @@ -3,18 +3,19 @@
>   *
>   * Version: $Id: rlm_detail.c,v 1.31 2003/08/11 17:06:51 aland Exp $
>   *
> - *  This program is is free software; you can redistribute it and/or
modify
> - *  it under the terms of the GNU General Public License, version 2 if
the
> - *  License as published by the Free Software Foundation.
> - *
> - *  This program is distributed in the hope that it will be useful,
> - *  but WITHOUT ANY WARRANTY; without even the implied warranty of
> - *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> - *  GNU General Public License for more details.
> - *
> - *  You should have received a copy of the GNU General Public License
> - *  along with this program; if not, write to the Free Software
> - *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
USA.
> + *   This program is free software; you can redistribute it and/or modify
> + *   it under the terms of the GNU General Public License as published by
> + *   the Free Software Foundation; either version 2 of the License, or
> + *   (at your option) any later version.
> + *
> + *   This program is distributed in the hope that it will be useful,
> + *   but WITHOUT ANY WARRANTY; without even the implied warranty of
> + *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + *   GNU General Public License for more details.
> + *
> + *   You should have received a copy of the GNU General Public License
> + *   along with this program; if not, write to the Free Software
> + *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
USA
>   *
>   * Copyright 2000  The FreeRADIUS server project
>   */
> Index: src/modules/rlm_unix/cache.c
> ===================================================================
> RCS file: /source/radiusd/src/modules/rlm_unix/cache.c,v
> retrieving revision 1.23
> diff -u -r1.23 cache.c
> --- src/modules/rlm_unix/cache.c 3 Sep 2003 15:19:32 -0000 1.23
> +++ src/modules/rlm_unix/cache.c 11 Sep 2003 10:08:52 -0000
> @@ -13,15 +13,16 @@
>   *
>   * Version: $Id: cache.c,v 1.23 2003/09/03 15:19:32 cparker Exp $
>   *
> - *   This program is is free software; you can redistribute it and/or
modify
> - *   it under the terms of the GNU General Public License, version 2 if
the
> - *   License as published by the Free Software Foundation.
> - *
> + *   This program is free software; you can redistribute it and/or modify
> + *   it under the terms of the GNU General Public License as published by
> + *   the Free Software Foundation; either version 2 of the License, or
> + *   (at your option) any later version.
> + *
>   *   This program is distributed in the hope that it will be useful,
>   *   but WITHOUT ANY WARRANTY; without even the implied warranty of
>   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>   *   GNU General Public License for more details.
> - *
> + *
>   *   You should have received a copy of the GNU General Public License
>   *   along with this program; if not, write to the Free Software
>   *   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
> Index: src/modules/rlm_unix/compat.c
> ===================================================================
> RCS file: /source/radiusd/src/modules/rlm_unix/compat.c,v
> retrieving revision 1.2
> diff -u -r1.2 compat.c
> --- src/modules/rlm_unix/compat.c 3 Sep 2003 15:19:32 -0000 1.2
> +++ src/modules/rlm_unix/compat.c 11 Sep 2003 10:08:52 -0000
> @@ -6,15 +6,16 @@
>   *
>   * Version: $Id: compat.c,v 1.2 2003/09/03 15:19:32 cparker Exp $
>   *
> - *   This program is is free software; you can redistribute it and/or
modify
> - *   it under the terms of the GNU General Public License, version 2 if
the
> - *   License as published by the Free Software Foundation.
> - *
> + *   This program is free software; you can redistribute it and/or modify
> + *   it under the terms of the GNU General Public License as published by
> + *   the Free Software Foundation; either version 2 of the License, or
> + *   (at your option) any later version.
> + *
>   *   This program is distributed in the hope that it will be useful,
>   *   but WITHOUT ANY WARRANTY; without even the implied warranty of
>   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
>   *   GNU General Public License for more details.
> - *
> + *
>   *   You should have received a copy of the GNU General Public License
>   *   along with this program; if not, write to the Free Software
>   *   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
>
> -- 
> Nicolas Baradakis
>
>
>
> --__--__--
>
> -
> List info/subscribe/unsubscribe? See
http://www.freeradius.org/list/users.html
>
>
> End of Freeradius-Users Digest
>



-
List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html

Reply via email to