Skip to content

Commit

Permalink
Fix a couple of typos and nits from review
Browse files Browse the repository at this point in the history
  • Loading branch information
Jessica Tallon committed Jul 31, 2017
1 parent 237a541 commit 6b527a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/apps/lwaftr/lwutil.lua
Expand Up @@ -6,7 +6,6 @@ local S = require("syscall")
local bit = require("bit")
local ffi = require("ffi")
local lib = require("core.lib")
local corelib = require("core.lib")


local band = bit.band
Expand All @@ -27,7 +26,7 @@ local ntohs = lib.ntohs
function produce_instance_configs(conf)
local ret = {}
for device, queues in pairs(conf.softwire_config.instance) do
ret[device] = corelib.deepcopy(conf)
ret[device] = lib.deepcopy(conf)
ret[device].softwire_config.instance = {[device]=queues}
end
return ret
Expand Down
2 changes: 1 addition & 1 deletion src/lib/yang/snabb-softwire-v2.yang
Expand Up @@ -706,7 +706,7 @@ module snabb-softwire-v2 {
type uint16;
default 1460;
description
"Maximm packet size to recieve on the IPv6 interface.";
"Maximum packet size to recieve on the IPv6 interface.";
}

uses traffic-filters;
Expand Down

0 comments on commit 6b527a9

Please sign in to comment.