X-Git-Url: http://sjero.net/git/?a=blobdiff_plain;f=src%2Fnetrc.c;h=193d4f3767633433ea2f07ad93997477a91a0d30;hb=359dd167602071cfa62d6c586ca846ede5ed7c29;hp=5c7efb29cc96a0340527b89f03dc33e699d50543;hpb=b9e9ad65ccf6c1fbf989852c5adbb0f840f9c58b;p=wget diff --git a/src/netrc.c b/src/netrc.c index 5c7efb29..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, 2009 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); }