Thanks Matthew/Alan. FYI I did try v3.0.x as well and got the same problem. However on Ubuntu, I never had a problem. It was only when we wanted the code on a Windows laptop, the problem occurs. Using Git Bash on Windows we tried to download the software and that’s is when we got the error. After deleting all the code as was suggested by git, we got there. I noticed, the code on Ubunu, rlm_pap.c contained the line: static const CONF_PARSER module_config[] = {{ "normalise", FR_CONF_OFFSET(PW_TYPE_BOOLEAN, rlm_pap_t, normify), "yes" }, CONF_PARSER_TERMINATOR }; The code on Windows, rlm_pap.c contained the line: static const CONF_PARSER module_config[] = {{ FR_CONF_OFFSET("normalise", FR_TYPE_BOOL, rlm_pap_t, normify), .dflt = "yes" }, CONF_PARSER_TERMINATOR }; Note the position of "normalise" I have used git hub for years and never seen this issue. I assume the top one is now the latest. Not important, but if you did know why I am seeing this I would like to know Thanks -----Original Message----- From: Freeradius-Devel [mailto:freeradius-devel-bounces+jonathan.anthony=siliconsafe.com@lists.freeradius.org] On Behalf Of Matthew Newton Sent: Monday, November 27, 2017 7:08 PM To: freeradius-devel@lists.freeradius.org Subject: Re: Download source error On Mon, 2017-11-27 at 18:49 +0000, Jonathan Anthony wrote:
I am trying to download the source on another machine. If I follow: git clone git@github.com:FreeRADIUS/freeradius-server.git cd freeradius-server git fetch origin v3.1.x:v3.1.x git checkout v3.1.x
I get error: $ git fetch origin v3.1.x:v3.1.x fatal: Couldn't find remote ref v3.1.x
v3.1.x was an unreleased development version. It was removed mainly due to security issues, see http://freeradius.org/security/fuzzer-2017.html use v3.0.x instead. -- Matthew - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/devel.html