Package: freetds-dev
Version: 0.82-7

UUID-based passwords are 36 characters long. Unfortunately FreeTDS
limits the length to 30 characters. Attached patch fixes the problem.

Relative information:

http://lists.ibiblio.org/pipermail/freetds/2002q3/008105.html
http://stackoverflow.com/questions/15369304/

-- 
With best regards,
Dmitry
--- include/tds.h       2013-04-26 11:17:07.000000000 +0200
+++ include/tds.h.orig  2012-07-17 10:16:16.000000000 +0200
@@ -499,7 +499,7 @@
 
 #define TDS_ALIGN_SIZE sizeof(tds_align_struct)
 
-#define TDS_MAX_LOGIN_STR_SZ 50
+#define TDS_MAX_LOGIN_STR_SZ 30
 typedef struct tds_login
 {
        DSTR server_name;               /**< server name (in freetds.conf) */

Reply via email to