From 1fd949ce9858e5be760ab2578b190e6d35e817f5 Mon Sep 17 00:00:00 2001 From: Stanislav Visnovsky Date: Wed, 1 Feb 2006 06:42:44 +0000 Subject: [PATCH] propagate separator to str::join() - fixes NFS mount --- zypp/base/String.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zypp/base/String.h b/zypp/base/String.h index 4e76ab4..511a800 100644 --- a/zypp/base/String.h +++ b/zypp/base/String.h @@ -264,7 +264,7 @@ namespace zypp template std::string join( const _Container & cont_r, const std::string & sep_r = " " ) - { return join( cont_r.begin(), cont_r.end() ); } + { return join( cont_r.begin(), cont_r.end(), sep_r ); } //@} -- 2.7.4