File: 08_fix_variables_declaration_conflicts

package info (click to toggle)
ffproxy 1.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 884 kB
  • sloc: ansic: 2,310; asm: 578; sh: 425; makefile: 91
file content (25 lines) | stat: -rw-r--r-- 706 bytes parent folder | download
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
Description: Fix conflicting declarations of some variables
Author: Emmanuel Bouthenot <kolter@debian.org>
Bug-Debian: https://bugs.debian.org/688462
Forwarded: no
Last-Update: 2019-02-18
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/dbs.h
+++ b/dbs.h
@@ -12,9 +12,9 @@
 extern regex_t *f_rhdr_drop[];
 extern regex_t *f_rhdr_match[];
 extern char    *f_rhdr_entry[];
-extern char    *e_inv;
-extern char    *e_res;
-extern char    *e_con;
-extern char    *e_post;
-extern char    *e_fil;
-extern char    *e_nic;
+extern struct msg *e_inv;
+extern struct msg *e_res;
+extern struct msg *e_con;
+extern struct msg *e_post;
+extern struct msg *e_fil;
+extern struct msg *e_nic;