[Kde-print-devel] [Bug 136649] 64bit specific bug in KDEPrintd::processRequest()
Cristian Tibirna
tibirna at kde.org
Thu Nov 2 02:15:04 CET 2006
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=136649
tibirna kde org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From tibirna kde org 2006-11-02 02:15 -------
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 ) )
{
More information about the Kde-print-devel
mailing list