diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-03-22 23:25:44 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-03-22 23:25:44 +0000 |
commit | 22e62916d8c1a8633239c77bdd996490db869b50 (patch) | |
tree | f90b12307fcbc3de67e6f13c31ce53c27b22bb19 /source3/lib/getsmbpass.c | |
parent | 1ce67b7672ab58afd76d0ad9cc0343e688c6770d (diff) | |
download | samba-22e62916d8c1a8633239c77bdd996490db869b50.tar.gz samba-22e62916d8c1a8633239c77bdd996490db869b50.tar.xz samba-22e62916d8c1a8633239c77bdd996490db869b50.zip |
- Use FUNCTION_MACRO, not __FUNCTION__.
- Add some const
(This used to be commit e149e70717f38e082ce35d55f9b4d84ba8419af7)
Diffstat (limited to 'source3/lib/getsmbpass.c')
-rw-r--r-- | source3/lib/getsmbpass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/getsmbpass.c b/source3/lib/getsmbpass.c index c271d55404..b6ae09b318 100644 --- a/source3/lib/getsmbpass.c +++ b/source3/lib/getsmbpass.c @@ -83,7 +83,7 @@ static int tcsetattr(int fd, int flags, struct sgttyb *t) static struct termios t; #endif /* SYSV_TERMIO */ -char *getsmbpass(char *prompt) +char *getsmbpass(const char *prompt) { FILE *in, *out; int echo_off; |