summaryrefslogtreecommitdiff
path: root/extra/abook/vcard.patch
blob: 55630c1e5b37fc211441222171c4eb96227a8dc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
diff -Naur old/filter.c new/filter.c
--- old/filter.c	2013-08-22 20:49:06.229337260 -1000
+++ new/filter.c	2013-08-22 20:49:13.552700987 -1000
@@ -1673,7 +1673,7 @@
 	// vCard(the country name)
 	item_fput(item, COUNTRY, xstrdup(strsep(&value, ";")));
 
-	if(*value) xfree(value);
+	if(value) xfree(value);
 }
 
 static void
@@ -2052,6 +2052,13 @@
 
 	free(name);
 
+	if(db_fget(item, NICK))
+	  fprintf(out, "NICKNAME:%s\r\n",
+		  safe_str(db_fget(item, NICK)));
+	if(db_fget(item, ANNIVERSARY))
+	  fprintf(out, "BIRTHDAY:%s\r\n",
+		  safe_str(db_fget(item, ANNIVERSARY)));
+
 	// see rfc6350 section 6.3.1
 	if(db_fget(item, ADDRESS)) {
 		fprintf(out, "ADR:;%s;%s;%s;%s;%s;%s\r\n",