From d2596e3f7b17e23224eef032a35e45ec0195a5a7 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Thu, 6 Jan 2011 10:23:20 -0500 Subject: [PATCH] Quiest a bogus compiler warning. --- plugins/sudoers/iolog_path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sudoers/iolog_path.c b/plugins/sudoers/iolog_path.c index 23345ca18..e56829c3f 100644 --- a/plugins/sudoers/iolog_path.c +++ b/plugins/sudoers/iolog_path.c @@ -150,7 +150,7 @@ expand_iolog_path(const char *prefix, const char *dir, const char *file, { size_t plen = 0, psize = 1024; char *path, *dst; - const char *src, *ep; + const char *src = dir, *ep; int pass, strfit = FALSE; /* Concatenate dir + file -> path, expanding any escape sequences. */