X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/ab8d647663ca0c59d6aaf3870d99edeea3a27a6c..dc8279c2b87289bc6bc1cc4a04a719615c9d675d:/sbr/ruserpass.c diff --git a/sbr/ruserpass.c b/sbr/ruserpass.c index 43784d52..9784e89e 100644 --- a/sbr/ruserpass.c +++ b/sbr/ruserpass.c @@ -147,10 +147,10 @@ ruserpass(const char *host, char **aname, char **apass, int flags) } printf("Name (%s:%s): ", host, myname); - if (fgets(tmp, sizeof(tmp) - 1, stdin) == NULL) { + if (fgets(tmp, sizeof tmp, stdin) == NULL) { advise ("tmp", "fgets"); } - TrimSuffixC(tmp, '\n'); + trim_suffix_c(tmp, '\n'); if (*tmp != '\0' || myname == NULL) { myname = tmp; }