Changeset 9186d15 for protocols/msn
- Timestamp:
- 2008-02-17T11:26:44Z (17 years ago)
- Branches:
- master
- Children:
- d5bd9c0
- Parents:
- e6648bf
- Location:
- protocols/msn
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/passport.c
re6648bf r9186d15 52 52 if( mad->cookie[i] == ',' ) 53 53 mad->cookie[i] = '&'; 54 55 /* Microsoft doesn't allow password longer than 16 chars and silently 56 fails authentication if you give the "full version" of your passwd. */ 57 if( strlen( mad->password ) > MAX_PASSPORT_PWLEN ) 58 mad->password[MAX_PASSPORT_PWLEN] = 0; 54 59 55 60 return passport_get_token_real( mad ); -
protocols/msn/passport.h
re6648bf r9186d15 35 35 #endif 36 36 #include "nogaim.h" 37 38 #define MAX_PASSPORT_PWLEN 16 37 39 38 40 struct msn_auth_data
Note: See TracChangeset
for help on using the changeset viewer.