Changeset 2496 for trunk/jons-gtk-gui
- Timestamp:
- 03/04/01 08:54:11 (8 years ago)
- Files:
-
- 1 modified
-
trunk/jons-gtk-gui/src/key_request.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/jons-gtk-gui/src/key_request.cpp
r2129 r2496 68 68 case SECURE_CHANNEL_SUPPORTED: 69 69 strncpy(secure_info, g_strdup_printf( 70 "The remote uses Licq v0.%d/SSL.",71 user->LicqVersion()), 128);70 "The remote uses Licq %s/SSL.", 71 CUserEvent::LicqVersionToString(user->LicqVersion())), 128); 72 72 break; 73 73 74 74 case SECURE_CHANNEL_NOTSUPPORTED: 75 75 strncpy(secure_info, g_strdup_printf( 76 "The remote uses Licq v0.%d, however it\n"76 "The remote uses Licq %s, however it\n" 77 77 "has no secure channel support compiled in.\n" 78 78 "This probably won't work.", 79 user->LicqVersion()), 128);79 CUserEvent::LicqVersionToString(user->LicqVersion())), 128); 80 80 break; 81 81
