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

(-)synce-libsynce/Makefile (-1 / +1 lines)
Lines 5-11 Link Here
5
# $FreeBSD: ports/palm/synce-libsynce/Makefile,v 1.10 2005/04/12 13:00:31 lawrance Exp $
5
# $FreeBSD: ports/palm/synce-libsynce/Makefile,v 1.10 2005/04/12 13:00:31 lawrance Exp $
6
6
7
PORTNAME=	synce-libsynce
7
PORTNAME=	synce-libsynce
8
PORTVERSION=	0.9.0
8
PORTVERSION=	0.9.1
9
CATEGORIES=	palm
9
CATEGORIES=	palm
10
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
10
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITE_SUBDIR=	synce
11
MASTER_SITE_SUBDIR=	synce
(-)synce-libsynce/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (synce-libsynce-0.9.0.tar.gz) = 497efcbf55453da808041e7f8d55690b
1
MD5 (synce-libsynce-0.9.1.tar.gz) = 3fcffb776a5bedc23458152e5a650348
2
SIZE (synce-libsynce-0.9.0.tar.gz) = 348860
2
SIZE (synce-libsynce-0.9.1.tar.gz) = 356343
(-)synce-libsynce/files/patch-lib-files.c (+21 lines)
Line 0 Link Here
1
--- lib/files.c.orig	Tue May 17 01:42:34 2005
2
+++ lib/files.c	Fri Jul 29 21:26:37 2005
3
@@ -45,7 +45,8 @@
4
 bool synce_get_directory(char** path)
5
 {
6
 	char buffer[MAX_PATH];
7
-    char *p;
8
+	char *p;
9
+	struct passwd* user;
10
 
11
 	/* if there is a preference for config dir set
12
 	   as an environment variable, use it */
13
@@ -57,7 +58,7 @@
14
 	}
15
 	
16
 	/* XXX: not very thread-safe? */
17
-	struct passwd* user = getpwuid(getuid());
18
+	user = getpwuid(getuid());
19
 
20
 	if (!path)
21
 		return false;

Return to bug 84333