aboutsummaryrefslogtreecommitdiffstats
path: root/api/rundll32_i.c
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2020-11-04 12:24:46 +0100
committerSimon Rozman <simon@rozman.si>2020-11-04 13:21:43 +0100
commit9c349273f5d8f4aa836dda86d6e936c6b034928a (patch)
tree5bb5edb4d4ecfbbcf69a787450970aaaad27c846 /api/rundll32_i.c
parentapi: include the rundll32 helpers the MSVC-typical way (diff)
downloadwintun-9c349273f5d8f4aa836dda86d6e936c6b034928a.tar.xz
wintun-9c349273f5d8f4aa836dda86d6e936c6b034928a.zip
api: concatenate function name at runtime
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r--api/rundll32_i.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/rundll32_i.c b/api/rundll32_i.c
index ca4a504..5f9de48 100644
--- a/api/rundll32_i.c
+++ b/api/rundll32_i.c
@@ -72,7 +72,7 @@ ProcessStderr(_In_ HANDLE Stderr)
else if (State == OnMsg && c == L'\n')
{
Msg[Count] = 0;
- LoggerLog(Level, Msg);
+ LoggerLog(Level, NULL, Msg);
State = OnNone;
Count = 0;
}