From c697fb3753fe9d3daddfed545115942506b90a23 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 1 Feb 2009 21:30:21 +0200 Subject: [PATCH] build fix: added missing declaration of mhl_dir_plus_file (reported by andrew_b) ./configure --enable-samba && make ../vfs/libvfs-mc.a(smbfs.o): In function `smbfs_get_path': /home/andrew/work.c/mc/mc.master/vfs/smbfs.c:1214: undefined reference to `mhl_str_dir_plus_file' collect2: ld returned 1 exit status Signed-off-by: Sergei Trofimovich --- vfs/smbfs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vfs/smbfs.c b/vfs/smbfs.c index f4d2345f1..e027da80c 100644 --- a/vfs/smbfs.c +++ b/vfs/smbfs.c @@ -49,6 +49,8 @@ #include +#include + #include "vfs.h" #include "vfs-impl.h" #include "smbfs.h"