Skip to content

Commit

Permalink
NonceStorage: Fix typo in SQL query
Browse files Browse the repository at this point in the history
[buteo-syncml] NonceStorage: Fix typo in SQL query
  • Loading branch information
martyone committed Jun 4, 2014
1 parent fbace2c commit ca5d650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NonceStorage.cpp
Expand Up @@ -106,7 +106,7 @@ void NonceStorage::setNonce( const QByteArray& aNonce )

clearNonce();

const QString insertQuery( "INSERT INTO nonces(local_device, remote_device, nonce) values(:local_device, :remove_device, :nonce)" );
const QString insertQuery( "INSERT INTO nonces(local_device, remote_device, nonce) values(:local_device, :remote_device, :nonce)" );

QSqlQuery query( iDbHandle );

Expand Down

0 comments on commit ca5d650

Please sign in to comment.