X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fgetpass.c;h=b33a3f8edaa840d7613c65c3d4bb0421f08d930b;hb=e345f8fdce3a18cab73f3edf65ca60f8357efda0;hp=6a53b72f06e8db09777fe9cf0e21e68bd1165da8;hpb=56bd3c9f2bf7b6061fa302c57250612f852bd92e;p=mmh diff --git a/sbr/getpass.c b/sbr/getpass.c index 6a53b72..b33a3f8 100644 --- a/sbr/getpass.c +++ b/sbr/getpass.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1988, 1993 + * Portions of this code are Copyright (c) 1988, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -30,31 +30,37 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $ID$ + * $Id$ */ #include -#include #include +#include /* for ttyname() */ +#include "h/mh.h" /* for adios() */ -#define PASSWORD_LEN 128 +/* We don't use MAX_PASS here because the maximum password length on a remote + POP daemon will have nothing to do with the length on our OS. 256 is + arbitrary but hopefully big enough to accomodate everyone. */ +#define MAX_PASSWORD_LEN 256 #ifndef TCSANOW #define TCSANOW 0 #endif -char *getpass(const char *prompt) +char * +nmh_getpass(const char *prompt) { struct termios oterm, term; int ch; - char *p, *ttystring, buf[PASSWORD_LEN+1]; + char *p, *ttystring; FILE *fout, *fin; + static char buf[MAX_PASSWORD_LEN + 1]; /* Find if stdin is connect to a terminal. If so, read directly from * the terminal, and turn off echo. Otherwise read from stdin. */ - if((ttystring = ttyname(fileno(stdin))) == NULL) { + if((ttystring = (char *)ttyname(fileno(stdin))) == NULL) { fout = stderr; fin = stdin; } @@ -69,9 +75,10 @@ char *getpass(const char *prompt) (void)tcsetattr(fileno(fin), TCSANOW, &term); } - for (p = buf; (ch = getc(fin)) != EOF && ch != '\n';) - if (p < buf + PASSWORD_LEN) - *p++ = ch; + for (p = buf; (ch = getc(fin)) != EOF && + ch != '\n' && + p < buf + MAX_PASSWORD_LEN;) + *p++ = ch; *p = '\0'; if(ttystring != NULL) { @@ -80,5 +87,5 @@ char *getpass(const char *prompt) (void)fputc('\n', fout); (void)fclose(fin); } - return(buf); + return buf; }