Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
55014c58
Commit
55014c58
authored
Dec 28, 2002
by
Jeff Dike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Missed an initializer in the ethertap backend.
parent
d1b76f6c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
arch/um/os-Linux/drivers/ethertap_user.c
arch/um/os-Linux/drivers/ethertap_user.c
+8
-8
No files found.
arch/um/os-Linux/drivers/ethertap_user.c
View file @
55014c58
...
...
@@ -216,14 +216,14 @@ static void etap_del_addr(unsigned char *addr, unsigned char *netmask,
}
struct
net_user_info
ethertap_user_info
=
{
init:
etap_user_init
,
open:
etap_open
,
close:
etap_close
,
remove:
NULL
,
set_mtu:
etap_set_mtu
,
add_address:
etap_add_addr
,
delete_address:
etap_del_addr
,
max_packet:
MAX_PACKET
-
ETH_HEADER_ETHERTAP
.
init
=
etap_user_init
,
.
open
=
etap_open
,
.
close
=
etap_close
,
.
remove
=
NULL
,
.
set_mtu
=
etap_set_mtu
,
.
add_address
=
etap_add_addr
,
.
delete_address
=
etap_del_addr
,
.
max_packet
=
MAX_PACKET
-
ETH_HEADER_ETHERTAP
};
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment