diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2003-01-14 12:56:01 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2003-01-14 12:56:01 +0000 |
commit | 92583cd8fffa622b7fb85c1c041036de03e793a6 (patch) | |
tree | 98cca04f75bbef9759f8cbaa5d7d6fb803b00d0f /netrc.c | |
parent | 366eb7b3a91d53282f0b1007913a55be236a322e (diff) | |
download | fetchmail-92583cd8fffa622b7fb85c1c041036de03e793a6.tar.gz fetchmail-92583cd8fffa622b7fb85c1c041036de03e793a6.tar.bz2 fetchmail-92583cd8fffa622b7fb85c1c041036de03e793a6.zip |
netrc cleanup.
svn path=/trunk/; revision=3779
Diffstat (limited to 'netrc.c')
-rw-r--r-- | netrc.c | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -37,8 +37,8 @@ maybe_add_to_list (netrc_entry **newentry, netrc_entry **list) a = *newentry; l = *list; - /* We need an account name in order to add the entry to the list. */ - if (a && ! a->account) + /* We need a login name in order to add the entry to the list. */ + if (a && ! a->login) { /* Free any allocated space. */ if (a->host) @@ -176,7 +176,7 @@ parse_netrc (file) { case tok_login: if (current) - current->account = (char *) xstrdup (tok); + current->login = (char *) xstrdup (tok); else premature_token = "login"; break; @@ -294,15 +294,15 @@ parse_netrc (file) /* Return the netrc entry from LIST corresponding to HOST. NULL is returned if no such entry exists. */ netrc_entry * -search_netrc (list, host, account) +search_netrc (list, host, login) netrc_entry *list; - char *host, *account; + char *host, *login; { /* Look for the HOST in LIST. */ while (list) { if (list->host && !strcmp(list->host, host)) - if (!list->account || !strcmp(list->account, account)) + if (!list->login || !strcmp(list->login, login)) /* We found a matching entry. */ break; @@ -326,13 +326,13 @@ main (argc, argv) char **argv; { struct stat sb; - char *program_name, *file, *host, *account; + char *program_name, *file, *host, *login; netrc_entry *head, *a; program_name = argv[0]; file = argv[1]; host = argv[2]; - account = argv[3]; + login = argv[3]; if (stat (file, &sb)) { @@ -348,14 +348,14 @@ main (argc, argv) exit (1); } - if (host && account) + if (host && login) { int i, status; status = 0; - printf("Host: %s, Account: %s\n", host, account); + printf("Host: %s, Login: %s\n", host, login); - a = search_netrc (head, host, account); + a = search_netrc (head, host, login); if (a) { /* Print out the password (if any). */ @@ -382,8 +382,8 @@ main (argc, argv) fputc (' ', stdout); - /* Print the account name. */ - fputs (a->account, stdout); + /* Print the login name. */ + fputs (a->login, stdout); if (a->password) { |