Hi all,

the rra library omits to add the ID_CAR_TEL and ID_PAGER to the contacts
of synce device, the attached patch fix this little bug.

Regards
Sergio
--- ./lib/contact.c.orig	2005-10-30 15:57:59.000000000 +0100
+++ ./lib/contact.c	2005-11-02 14:09:39.000000000 +0100
@@ -1019,6 +1019,14 @@
 		{
 			add_string(parser, ID_RADIO_TEL, type, value);
 		}
+		else if (STR_IN_STR(type, "CAR"))
+		{
+			add_string(parser, ID_CAR_TEL, type, value);
+		}
+		else if (STR_IN_STR(type, "PAGER"))
+		{
+			add_string(parser, ID_PAGER, type, value);
+		}
 		else
 		{
 			synce_trace("Type '%s' for field '%s' not recognized.",

Reply via email to