X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fnetrc.h;h=47adb79339ec025a9510bb733484a2b7b53d99ba;hp=35a145f7810ac6d6aa11915ab8e3a20e6b106ed9;hb=HEAD;hpb=caae3b70f46bd519857b595f7f06ea0179551336 diff --git a/src/netrc.h b/src/netrc.h index 35a145f7..47adb793 100644 --- a/src/netrc.h +++ b/src/netrc.h @@ -1,5 +1,6 @@ /* Declarations for netrc.c - Copyright (C) 1996, 1996, 1997, 2007, 2008 Free Software Foundation, Inc. + Copyright (C) 1996, 1996, 1997, 2007, 2008, 2009, 2010, 2011 Free + Software Foundation, Inc. This file is part of GNU Wget. @@ -32,14 +33,15 @@ as that of the covered work. */ typedef struct _acc_t { - char *host; /* NULL if this is the default machine - entry. */ + char *host; /* NULL if this is the default machine + entry. */ char *acc; - char *passwd; /* NULL if there is no password. */ + char *passwd; /* NULL if there is no password. */ struct _acc_t *next; } acc_t; void search_netrc (const char *, const char **, const char **, int); void free_netrc (acc_t *l); +void netrc_cleanup(void); #endif /* NETRC_H */