diff options
Diffstat (limited to 'src/getpass.c')
-rw-r--r-- | src/getpass.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/getpass.c b/src/getpass.c index a46d8e30d..ce3ab5e0f 100644 --- a/src/getpass.c +++ b/src/getpass.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -124,7 +124,7 @@ char *getpass_r(const char *prompt, char *buffer, size_t buflen) previous one as well */ i = i - (i>=1?2:1); } -#ifndef __SYMBIAN32__ +#ifndef __SYMBIAN32__ /* since echo is disabled, print a newline */ fputs("\n", stderr); #endif @@ -157,7 +157,7 @@ char *getpass_r(const char *prompt, char *buffer, size_t buflen) if (buffer[i-1] == '\b') { /* remove this letter and if this is not the first key, remove the previous one as well */ - if (i > 1) { + if (i > 1) { printf("\b \b"); i = i - 2; } else { |