1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

removed unneeded brackets with NetWare implementation.

This commit is contained in:
Gunter Knauf 2007-04-14 16:55:17 +00:00
parent f1596698ae
commit 011ccbc31a

View File

@ -129,7 +129,7 @@ char *getpass_r(const char *prompt, char *buffer, size_t buflen)
#include <screen.h>
char *getpass_r(const char *prompt, char *buffer, size_t buflen)
{
return(getpassword(prompt, buffer, buflen));
return getpassword(prompt, buffer, buflen);
}
#define DONE
#endif /* NETWARE */