Ignore:
Timestamp:
Mar 12, 2008, 9:08:18 AM (17 years ago)
Author:
Paul Smedley
Message:

Update source to 3.0.28a

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/lib/replace/getpass.c

    r1 r124  
    2020
    2121#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
     29char *getsmbpass(const char *prompt)
     30{
     31        return getpassphrase(prompt);
     32}
     33
     34#else /* !REPLACE_GETPASS_BY_GETPASSPHRASE */
    2235
    2336#if defined(HAVE_TERMIOS_H)
     
    211224 void getsmbpasswd_dummy(void) {;}
    212225#endif
     226
     227#endif /* REPLACE_GETPASS_BY_GETPASSPHRASE */
Note: See TracChangeset for help on using the changeset viewer.