X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/177f020f122827214159c46dcfe7ded1e3c8d1c3..94187a80bd60baab4b9c4b949ad820d730578123:/sbr/ruserpass.c diff --git a/sbr/ruserpass.c b/sbr/ruserpass.c index 6b1d1a13..5c47aa11 100644 --- a/sbr/ruserpass.c +++ b/sbr/ruserpass.c @@ -1,4 +1,6 @@ -/* Portions of this code are +/* ruserpass.c -- parse .netrc-format file. + * + * Portions of this code are * Copyright (c) 1985 Regents of the University of California. * All rights reserved. * @@ -216,7 +218,7 @@ token(char *tokval) for (t = toktabs; t->tokstr; t++) if (!strcmp(t->tokstr, tokval)) - return (t->tval); + return t->tval; - return (ID); + return ID; }