1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-02 12:59:02 +00:00

Fixed an undeclared variable bug in a currently-unused codepath.

This commit is contained in:
ron
2009-07-17 21:56:11 +00:00
parent d0b41b5cfc
commit 1b2392f73d

View File

@@ -2919,7 +2919,7 @@ local function marshall_srvsvc_NetShareInfo2(location, name, sharetype, comment,
local max_users = marshall_basetype(location, marshall_int32, {max_users})
local current_users = marshall_basetype(location, marshall_int32, {current_users})
local path = marshall_ptr(location, marshall_unicode, {path, true}, path)
local password = marshall_ptr(location, marshall_password, {password, true}, password)
local password = marshall_ptr(location, marshall_unicode, {password, true}, password)
result = name .. sharetype .. comment .. permissions .. max_users .. current_users .. path .. password