| 22322:290cc222872a | 22323:ef5a1f7861b4 |
|---|---|
| 920 } | 920 } |
| 921 | 921 |
| 922 return xfer; | 922 return xfer; |
| 923 } | 923 } |
| 924 | 924 |
| 925 static gchar* yahoo_xfer_new_xfer_id() | 925 static gchar* yahoo_xfer_new_xfer_id(void) |
| 926 { | 926 { |
| 927 gchar *ans; | 927 gchar *ans; |
| 928 int i,j; | 928 int i,j; |
| 929 ans = g_strnfill(24, ' '); | 929 ans = g_strnfill(24, ' '); |
| 930 ans[23] = '$'; | 930 ans[23] = '$'; |
| 935 if(j < 26) | 935 if(j < 26) |
| 936 ans[i] = j + 'a'; | 936 ans[i] = j + 'a'; |
| 937 else if(j < 52) | 937 else if(j < 52) |
| 938 ans[i] = j - 26 + 'A'; | 938 ans[i] = j - 26 + 'A'; |
| 939 else | 939 else |
| 940 ans[i] = j - 52 + '0'; | 940 ans[i] = j - 52 + '0'; |
| 941 } | 941 } |
| 942 return ans; | 942 return ans; |
| 943 } | 943 } |
| 944 | 944 |
| 945 static void yahoo_xfer_dns_connected_15(GSList *hosts, gpointer data, const char *error_message) | 945 static void yahoo_xfer_dns_connected_15(GSList *hosts, gpointer data, const char *error_message) |