~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/get_password.c

  • Committer: Monty Taylor
  • Date: 2008-08-15 19:55:19 UTC
  • Revision ID: monty@inaugust.com-20080815195519-su4brbs5eqfgb90i
Removed some mysys refs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
** This is an own file to avoid conflicts with curses
23
23
*/
24
24
#include <drizzled/global.h>
25
 
#include <mysys/my_sys.h>
26
25
#include "drizzle.h"
27
26
#include <mystrings/m_string.h>
28
27
#include <mystrings/m_ctype.h>
203
202
    fputc('\n',stdout);
204
203
# endif /* HAVE_GETPASS */
205
204
 
206
 
  return(my_strdup(buff,MYF(MY_FAE)));
 
205
  return strdup(buff);
207
206
}
208
207
#endif /*__WIN__*/