pidgin/pidgin

883748e4b020
Remove mentions of passwords from the pidgin account dialog

Testing Done:
This fixes [#PIDGIN-17482](https://issues.imfreedom.org/issue/PIDGIN-17482)



![screenshot1](https://i.ibb.co/0DT84PK/Screenshot-from-2021-03-18-17-59-47.png) | ![screenshot2](https://i.ibb.co/b7tYpf0/Screenshot-from-2021-03-18-17-59-54.png)

Bugs closed: PIDGIN-17482

Reviewed at https://reviews.imfreedom.org/r/572/
#ifndef PURPLE_ZEPHYR_INTERNAL_H
#define PURPLE_ZEPHYR_INTERNAL_H
#include <sysdep.h>
#ifdef LIBZEPHYR_EXT
#include <zephyr/zephyr.h>
#else
#include <zephyr_internal.h>
#endif
#ifdef WIN32
#ifndef MAXHOSTNAMELEN
#define MAXHOSTNAMELEN 512
#endif
#define ETIMEDOUT WSAETIMEDOUT
#define EADDRINUSE WSAEADDRINUSE
#else /* !WIN32 */
#include <netdb.h>
#ifndef MAXHOSTNAMELEN
#define MAXHOSTNAMELEN 4096
#endif
#endif
#ifdef ZEPHYR_USES_HESIOD
#include <hesiod.h>
#endif
#ifndef ZEPHYR_USES_KERBEROS
#define REALM_SZ MAXHOSTNAMELEN
#define INST_SZ 0 /* no instances w/o Kerberos */
#define ANAME_SZ 9 /* size of a username + null */
#define CLOCK_SKEW 300 /* max time to cache packet ids */
#endif
#endif /* PURPLE_ZEPHYR_INTERNAL_H */