1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-11 12:05:06 -05: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> #include <screen.h>
char *getpass_r(const char *prompt, char *buffer, size_t buflen) char *getpass_r(const char *prompt, char *buffer, size_t buflen)
{ {
return(getpassword(prompt, buffer, buflen)); return getpassword(prompt, buffer, buflen);
} }
#define DONE #define DONE
#endif /* NETWARE */ #endif /* NETWARE */