Changeset 124 for branches/samba-3.0/source/lib/replace/getpass.c
- Timestamp:
- Mar 12, 2008, 9:08:18 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/lib/replace/getpass.c
r1 r124 20 20 21 21 #include "replace.h" 22 23 #if defined(REPLACE_GETPASS_BY_GETPASSPHRASE) 24 25 #if defined(HAVE_STDIO_H) 26 #include <stdio.h> 27 #endif 28 29 char *getsmbpass(const char *prompt) 30 { 31 return getpassphrase(prompt); 32 } 33 34 #else /* !REPLACE_GETPASS_BY_GETPASSPHRASE */ 22 35 23 36 #if defined(HAVE_TERMIOS_H) … … 211 224 void getsmbpasswd_dummy(void) {;} 212 225 #endif 226 227 #endif /* REPLACE_GETPASS_BY_GETPASSPHRASE */
Note:
See TracChangeset
for help on using the changeset viewer.