You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by dr...@locus.apache.org on 2000/12/02 13:06:04 UTC

cvs commit: apr/passwd apr_getpass.c

dreid       00/12/02 04:06:04

  Modified:    passwd   apr_getpass.c
  Log:
  If we're using the BeOS implementation of getpass we need stdio.h...
  This should get this part building on BeOS again.
  
  Submitted by:	Sam TH <sa...@uchicago.edu>
  Reviewed by:	David Reid <dr...@apache.org>
  
  Revision  Changes    Path
  1.4       +2 -0      apr/passwd/apr_getpass.c
  
  Index: apr_getpass.c
  ===================================================================
  RCS file: /home/cvs/apr/passwd/apr_getpass.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- apr_getpass.c	2000/10/16 06:04:48	1.3
  +++ apr_getpass.c	2000/12/02 12:06:03	1.4
  @@ -115,6 +115,8 @@
   }
   
   #elif defined (HAVE_TERMIOS_H)
  +#include <stdio.h>
  +
   static char *getpass(const char *prompt)
   {
       struct termios attr;