From a8a7fa28e2e9cb19db6a27fcccb567a8ccfe6109 Mon Sep 17 00:00:00 2001 From: jules Date: Fri, 15 Jul 2016 11:36:18 +0100 Subject: [PATCH] Added a missing newline in the juce_tracktion_marketplace keygen --- .../marketplace/juce_OnlineUnlockStatus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_tracktion_marketplace/marketplace/juce_OnlineUnlockStatus.cpp b/modules/juce_tracktion_marketplace/marketplace/juce_OnlineUnlockStatus.cpp index e7a7cfa384..0c12a6ab03 100644 --- a/modules/juce_tracktion_marketplace/marketplace/juce_OnlineUnlockStatus.cpp +++ b/modules/juce_tracktion_marketplace/marketplace/juce_OnlineUnlockStatus.cpp @@ -482,7 +482,7 @@ String KeyGeneration::generateExpiringKeyFile (const String& appName, xml.setAttribute ("expiryTime", String::toHexString (expiryTime.toMilliseconds())); String comment (KeyFileUtils::createKeyFileComment (appName, userEmail, userName, machineNumbers)); - comment << "Expires: " << expiryTime.toString (true, true); + comment << newLine << "Expires: " << expiryTime.toString (true, true); return KeyFileUtils::createKeyFile (comment, xml, privateKey); }