View | Details | Raw Unified | Return to bug 123915
Collapse All | Expand All

(-)/usr/ports/x11-fm/emelfm2.new/Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	emelfm2
8
PORTNAME=	emelfm2
9
PORTVERSION=	0.4
9
PORTVERSION=	0.4.1
10
CATEGORIES=	x11-fm
10
CATEGORIES=	x11-fm
11
MASTER_SITES=	http://emelfm2.net/rel/
11
MASTER_SITES=	http://emelfm2.net/rel/
12
12
(-)/usr/ports/x11-fm/emelfm2.new/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (emelfm2-0.4.tar.gz) = 0242f340b642d7de2c09ccc8963e3135
1
MD5 (emelfm2-0.4.1.tar.gz) = 215d0a872350b4bdb22de940a8f2a4af
2
SHA256 (emelfm2-0.4.tar.gz) = 074be06f816460b2467cbad6e54beec39e110940942fc98df6225b7b05c4467c
2
SHA256 (emelfm2-0.4.1.tar.gz) = 074b5003ea0d71699716c7b0a3d16e37f96c77e8df284957ca1112e4d1b455eb
3
SIZE (emelfm2-0.4.tar.gz) = 1143199
3
SIZE (emelfm2-0.4.1.tar.gz) = 1149166
(-)/usr/ports/x11-fm/emelfm2.new/files/patch-e2_complete__path.c (-11 lines)
Lines 1-11 Link Here
1
--- src/command/complete/e2_complete__path.c	2008-03-22 03:58:43.000000000 +0100
2
+++ src/command/complete/e2_complete__path.c	2008-04-03 15:15:09.000000000 +0200
3
@@ -147,7 +147,7 @@
4
 	{
5
 		gchar *p1, *p2, *localpath;
6
 		p1 = g_utf8_next_char (strrchr (word, G_DIR_SEPARATOR));	//the 'real' word to complete
7
-		p2 = strndup (word, p1 - word);	//prefix for matches
8
+		p2 = g_strndup (word, p1 - word);	//prefix for matches
9
 		if (word[0] == G_DIR_SEPARATOR)
10
 		{	//word is an absolute path string
11
 			localpath = F_FILENAME_TO_LOCALE (p2);
(-)/usr/ports/x11-fm/emelfm2.new/files/patch-plugins_e2p_crypt.c (-20 lines)
Lines 1-20 Link Here
1
--- plugins/e2p_crypt.c.orig	2007-11-22 22:23:11.000000000 +0100
2
+++ plugins/e2p_crypt.c	2008-04-03 15:45:48.000000000 +0200
3
@@ -1545,7 +1545,7 @@
4
 	{
5
 		sep = strchr (execpath, ':');	//ascii scan ok
6
 		if (sep != NULL)
7
-			execpath = strndup (execpath, sep-execpath);
8
+			execpath = g_strndup (execpath, sep-execpath);
9
 		//FIXME preserve execpath so that later members can be used
10
 	}
11
 #ifdef E2_VFS
12
@@ -1849,7 +1849,7 @@
13
 		}
14
 	}
15
 
16
-	fdatasync (fdesc);
17
+	fsync (fdesc);
18
 
19
 	retval = TRUE;
20
 cleanup:

Return to bug 123915