diff options
author | Mark Wooding <mdw@distorted.org.uk> | 2006-02-03 21:27:02 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-04 08:33:20 +0100 |
commit | 1fda3d557b7c9e19e008c3a3d77f1922341796d7 (patch) | |
tree | c9966935e5d59fc61fd0f681661947e69ff2881f /daemon.c | |
parent | git-merge: Properly quote $merge_msg variable. (diff) | |
download | git-1fda3d557b7c9e19e008c3a3d77f1922341796d7.tar.xz git-1fda3d557b7c9e19e008c3a3d77f1922341796d7.zip |
daemon: Provide missing argument for logerror() call.
Could cause a crash if --base-path set. Unlikely to be a security the
concern: message doesn't go to the client, so we can't leak anything
(except by dumping core), and we've already forked, so it's not a denial
of service.
Signed-off-by: Mark Wooding <mdw@distorted.org.uk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'daemon.c')
-rw-r--r-- | daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -147,7 +147,7 @@ static char *path_ok(char *dir) static char rpath[PATH_MAX]; if (*dir != '/') { /* Forbid possible base-path evasion using ~paths. */ - logerror("'%s': Non-absolute path denied (base-path active)"); + logerror("'%s': Non-absolute path denied (base-path active)", dir); return NULL; } snprintf(rpath, PATH_MAX, "%s%s", base_path, dir); |