Increased lengths for title, username and password

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@478 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Peter Åstrand 2003-10-06 09:37:24 +00:00
parent 9321f0d293
commit db12b068bb

View File

@ -40,8 +40,8 @@
#include "crypto/md5.h" #include "crypto/md5.h"
#endif #endif
char g_title[32] = ""; char g_title[64] = "";
char g_username[16]; char g_username[64];
char hostname[16]; char hostname[16];
char keymapname[16]; char keymapname[16];
int keylayout = 0x409; /* Defaults to US keyboard layout */ int keylayout = 0x409; /* Defaults to US keyboard layout */
@ -197,7 +197,7 @@ main(int argc, char *argv[])
char server[64]; char server[64];
char fullhostname[64]; char fullhostname[64];
char domain[16]; char domain[16];
char password[16]; char password[64];
char shell[128]; char shell[128];
char directory[32]; char directory[32];
BOOL prompt_password, rdp_retval = False; BOOL prompt_password, rdp_retval = False;