From e3b75d5ca87335c553424934fedbc9443e2bcbe8 Mon Sep 17 00:00:00 2001 From: Srivats P Date: Sun, 26 Jun 2016 11:31:40 +0530 Subject: [PATCH] Capture temp file to use userAlias instead of name for filename since Windows port names are now named NPF_XXXX --- client/port.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/port.h b/client/port.h index 8496843..281a61a 100644 --- a/client/port.h +++ b/client/port.h @@ -122,7 +122,7 @@ public: delete capFile_; capFile_ = new QTemporaryFile(QString(QDir::tempPath()) .append("/") - .append(name()) + .append(userAlias()) .append(".XXXXXX")); return capFile_; }