X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fnetrc.c;h=193d4f3767633433ea2f07ad93997477a91a0d30;hp=eb99ff44e0bef23eb42618a2a6ae8a87b20e197c;hb=2f6aa1d7417df1dfc58597777686fbd77179b9fd;hpb=e941befd40c22c4d66bf6587ffbdff745d6ab97c diff --git a/src/netrc.c b/src/netrc.c index eb99ff44..193d4f37 100644 --- a/src/netrc.c +++ b/src/netrc.c @@ -1,5 +1,6 @@ /* Read and parse the .netrc file to get hosts, accounts, and passwords. - Copyright (C) 1996, 2007, 2008 Free Software Foundation, Inc. + Copyright (C) 1996, 2007, 2008, 2009, 2010, 2011 Free Software + Foundation, Inc. This file is part of GNU Wget. @@ -253,7 +254,7 @@ static void shift_left(char *string) { char *p; - + for (p=string; *p; ++p) *p = *(p+1); }