Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 14373
b: refs/heads/master
c: 2fce76a
h: refs/heads/master
i:
  14371: d3a74d9
v: v3
  • Loading branch information
Harald Welte authored and David S. Miller committed Nov 17, 2005
1 parent 0ce2172 commit f16a54a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bd6af700a7191f483f41706467033588f28c8877
refs/heads/master: 2fce76afdb067fa3e7f8ee33c9fe366bd65887ea
4 changes: 2 additions & 2 deletions trunk/net/ipv4/netfilter/ip_conntrack_ftp.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ static char *ftp_buffer;
static DEFINE_SPINLOCK(ip_ftp_lock);

#define MAX_PORTS 8
static short ports[MAX_PORTS];
static unsigned short ports[MAX_PORTS];
static int ports_c;
module_param_array(ports, short, &ports_c, 0400);
module_param_array(ports, ushort, &ports_c, 0400);

static int loose;
module_param(loose, int, 0600);
Expand Down
4 changes: 2 additions & 2 deletions trunk/net/ipv4/netfilter/ip_conntrack_irc.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include <linux/moduleparam.h>

#define MAX_PORTS 8
static short ports[MAX_PORTS];
static unsigned short ports[MAX_PORTS];
static int ports_c;
static int max_dcc_channels = 8;
static unsigned int dcc_timeout = 300;
Expand All @@ -52,7 +52,7 @@ EXPORT_SYMBOL_GPL(ip_nat_irc_hook);
MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
MODULE_DESCRIPTION("IRC (DCC) connection tracking helper");
MODULE_LICENSE("GPL");
module_param_array(ports, short, &ports_c, 0400);
module_param_array(ports, ushort, &ports_c, 0400);
MODULE_PARM_DESC(ports, "port numbers of IRC servers");
module_param(max_dcc_channels, int, 0400);
MODULE_PARM_DESC(max_dcc_channels, "max number of expected DCC channels per IRC session");
Expand Down
4 changes: 2 additions & 2 deletions trunk/net/ipv4/netfilter/ip_conntrack_tftp.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ MODULE_DESCRIPTION("tftp connection tracking helper");
MODULE_LICENSE("GPL");

#define MAX_PORTS 8
static short ports[MAX_PORTS];
static unsigned short ports[MAX_PORTS];
static int ports_c;
module_param_array(ports, short, &ports_c, 0400);
module_param_array(ports, ushort, &ports_c, 0400);
MODULE_PARM_DESC(ports, "port numbers of tftp servers");

#if 0
Expand Down

0 comments on commit f16a54a

Please sign in to comment.