Hi, this fixes dtfile_copy spawning failures on x86_64.
>From 0eca2078fd5246288c32c77ee6c911073203d6a5 Mon Sep 17 00:00:00 2001
From: alx <a...@fastestcode.org>
Date: Sat, 11 Jul 2015 22:54:31 +0200
Subject: [PATCH] dtfile: 0 is not NULL
---
cde/programs/dtfile/FileManip.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cde/programs/dtfile/FileManip.c b/cde/programs/dtfile/FileManip.c
index 5b4d6c5..788efc5 100644
--- a/cde/programs/dtfile/FileManip.c
+++ b/cde/programs/dtfile/FileManip.c
@@ -545,10 +545,10 @@ MoveDir(
/* pass in geometry, and other command lines params when available */
if(type == TRASH_DIRECTORY)
rc = execlp(DTCOPY, "dtfile_copy", "-move", "-confirmReplace",
- "-confirmErrors", "-popDown","-checkPerms", source, target, 0);
+ "-confirmErrors", "-popDown","-checkPerms", source, target, NULL);
else
rc = execlp(DTCOPY, "dtfile_copy", "-move", "-confirmReplace",
- "-confirmErrors", "-popDown", source, target, 0);
+ "-confirmErrors", "-popDown", source, target, NULL);
/* call errorhandler */
perror ("Could not exec child process \"dtfile_copy\"");
--
2.4.2
------------------------------------------------------------------------------
Don't Limit Your Business. Reach for the Cloud.
GigeNET's Cloud Solutions provide you with the tools and support that
you need to offload your IT needs and focus on growing your business.
Configured For All Businesses. Start Your Cloud Today.
https://www.gigenetcloud.com/
_______________________________________________
cdesktopenv-devel mailing list
cdesktopenv-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cdesktopenv-devel