We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94945ad commit 4946ea5Copy full SHA for 4946ea5
include/linux/netfilter/nf_conntrack_pptp.h
@@ -10,7 +10,7 @@
10
#include <net/netfilter/nf_conntrack_expect.h>
11
#include <uapi/linux/netfilter/nf_conntrack_tuple_common.h>
12
13
-extern const char *const pptp_msg_name(u_int16_t msg);
+const char *pptp_msg_name(u_int16_t msg);
14
15
/* state of the control session */
16
enum pptp_ctrlsess_state {
net/netfilter/nf_conntrack_pptp.c
@@ -91,7 +91,7 @@ static const char *const pptp_msg_name_array[PPTP_MSG_MAX + 1] = {
91
[PPTP_SET_LINK_INFO] = "SET_LINK_INFO"
92
};
93
94
-const char *const pptp_msg_name(u_int16_t msg)
+const char *pptp_msg_name(u_int16_t msg)
95
{
96
if (msg > PPTP_MSG_MAX)
97
return pptp_msg_name_array[0];
0 commit comments