]> Pileus Git - ~andy/fetchmail/blobdiff - netrc.h
Complete Dominik's name.
[~andy/fetchmail] / netrc.h
diff --git a/netrc.h b/netrc.h
index 7111146e9456ed432cf20f03f245a84a372d92f0..c69316a89b6c40e3801e058e07181cfe3a01a1d4 100644 (file)
--- a/netrc.h
+++ b/netrc.h
@@ -27,8 +27,8 @@ typedef struct _netrc_entry {
   /* The exact host name given in the .netrc, NULL if default. */
   char *host;
 
-  /* The name of the account. */
-  char *account;
+  /* The login name of the user. */
+  char *login;
 
   /* Password for the account (NULL, if none). */
   char *password;
@@ -46,6 +46,9 @@ netrc_entry *parse_netrc __P((char *file));
 /* Return the netrc entry from LIST corresponding to HOST.  NULL is
    returned if no such entry exists. */
 netrc_entry *search_netrc __P((netrc_entry *list, char *host, char *account));
+
+/* Free the netrc list structure */
+void free_netrc __P((netrc_entry *list));
 __END_DECLS
 
 #endif /* _NETRC_H_ */