You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1001 B
32 lines
1001 B
From 1136b8150f58e909eaa094d991dcefa81b8f6a60 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Fran=C3=A7ois=20Andriot?= <francois.andriot@free.fr>
|
|
Date: Tue, 11 May 2021 19:45:01 +0200
|
|
Subject: Fix ftbfs on Fedora 34
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
error: ordered comparison of pointer with integer zero ('char*' and 'int')
|
|
|
|
Signed-off-by: François Andriot <francois.andriot@free.fr>
|
|
---
|
|
tdesudo/tdesudo.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tdesudo/tdesudo.cpp b/tdesudo/tdesudo.cpp
|
|
index c255d0f..83158ab 100644
|
|
--- a/tdesudo/tdesudo.cpp
|
|
+++ b/tdesudo/tdesudo.cpp
|
|
@@ -205,7 +205,7 @@ TdeSudo::TdeSudo(TQWidget *parent, const char *name,const TQString& icon, const
|
|
chmod(m_tmpname.ascii(),0644);
|
|
|
|
QCStringList output;
|
|
- while (fgets(buf, 1024, f) > 0)
|
|
+ while (fgets(buf, 1024, f) != NULL)
|
|
output += buf;
|
|
if (pclose(f) < 0) {
|
|
kdError() << k_lineinfo << "Could not run xauth.\n";
|
|
--
|
|
cgit v1.2.1
|
|
|