diff options
author | Jeremy Allison <jra@samba.org> | 2006-02-18 00:27:31 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:10:13 -0500 |
commit | 9132acff082381b32961eb2b3244b8fedd4df218 (patch) | |
tree | 344dc24de1501de59edc6036480efaf29807d92f /source3/utils | |
parent | 3403fc2d4966e7b2e29ec45ecdc53332302427e4 (diff) | |
download | samba-9132acff082381b32961eb2b3244b8fedd4df218.tar.gz samba-9132acff082381b32961eb2b3244b8fedd4df218.tar.bz2 samba-9132acff082381b32961eb2b3244b8fedd4df218.zip |
r13553: Fix all our warnings at -O6 on an x86_64 box.
Jeremy.
(This used to be commit ea82958349a57ef4b7ce9638eec5f1388b0fba2a)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/passwd_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/passwd_util.c b/source3/utils/passwd_util.c index e98d017cd6..8ce83ecbf4 100644 --- a/source3/utils/passwd_util.c +++ b/source3/utils/passwd_util.c @@ -57,7 +57,7 @@ char *stdin_new_passwd( void) Used if the '-s' (smbpasswd) or '-t' (pdbedit) option is set to silently get passwords to enable scripting. *************************************************************/ -char *get_pass( char *prompt, BOOL stdin_get) +char *get_pass( const char *prompt, BOOL stdin_get) { char *p; if (stdin_get) { |