| Summary: | 64bit specific bug in KDEPrintd::processRequest() | ||
|---|---|---|---|
| Product: | [Unmaintained] kdeprint | Reporter: | Modestas Vainius <modax.reg> |
| Component: | general | Assignee: | KDEPrint Devel Mailinglist <kde-print-bugs-null> |
| Status: | CLOSED FIXED | ||
| Severity: | normal | CC: | jlayt |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | The patch for the bug | ||
|
Description
Modestas Vainius
2006-11-01 16:13:45 UTC
Created attachment 18351 [details]
The patch for the bug
SVN commit 601090 by tibirna:
Patch for 64bits incompatibility, thanks go to Modestas Vainius.
BUG:136649
M +1 -1 kdeprintd.cpp
--- branches/KDE/3.5/kdelibs/kdeprint/kdeprintd.cpp #601089:601090
@@ -263,7 +263,7 @@
info.comment = i18n( "Printing system" );
QDataStream input( params, IO_WriteOnly );
- input << info << i18n( "Authentication failed (user name=%1)" ).arg( info.username ) << 0 << req->seqNbr;
+ input << info << i18n( "Authentication failed (user name=%1)" ).arg( info.username ) << 0L << (long int) req->seqNbr;
if ( callingDcopClient()->call( "kded", "kpasswdserver", "queryAuthInfo(KIO::AuthInfo,QString,long int,long int)",
params, replyType, reply ) )
{
Closing old Resolved status bug. |