aboutsummaryrefslogblamecommitdiff
path: root/multimedia/vdr-plugin-eepg/files/patch-eepg.c
blob: c28e8181d2039596cce6637aa90bebfcb3c8685f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                                  
--- a/eepg.c
+++ b/eepg.c
@@ -427,7 +427,14 @@ static void load_file (int tableid, char
 
     while (fgets (buf, sizeof (buf), fp) != NULL) {
       from = binary = to = NULL;
+#ifdef __FreeBSD__
+      from = MALLOC(char, 256);
+      binary = MALLOC(char, 1024);
+      to = MALLOC(char, 256);
+      int elems = sscanf (buf, "%255[^:]:%1023[^:]:%255[^:]:", from, binary, to);
+#else
       int elems = sscanf (buf, "%a[^:]:%a[^:]:%a[^:]:", &from, &binary, &to);
+#endif
       if (elems == 3) {
 	int bin_len = strlen (binary);
 	int from_char = resolve_char (from);