Files
ports/misc/mc/patches/patch-src_diffviewer_ydiff_c
T
robert de618f3385 update to 4.8.33;
- fix HOMEPAGE and SITES based on issues/4570 (from Yury V. Zaytsev)
- drop ksh patches which are now upstreamed
2025-03-17 17:01:02 +00:00

13 lines
566 B
Plaintext

Index: src/diffviewer/ydiff.c
--- src/diffviewer/ydiff.c.orig
+++ src/diffviewer/ydiff.c
@@ -821,7 +821,7 @@ dff_execute (const char *args, const char *extra, cons
/* escape potential $ to avoid shell variable substitutions in popen() */
file1_esc = str_shell_escape (file1);
file2_esc = str_shell_escape (file2);
- cmd = g_strdup_printf ("diff %s %s %s %s %s", args, extra, opt, file1_esc, file2_esc);
+ cmd = g_strdup_printf ("gdiff %s %s %s %s %s", args, extra, opt, file1_esc, file2_esc);
g_free (file1_esc);
g_free (file2_esc);