Skip to content
Snippets Groups Projects
Commit 85faefc7 authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

be shorter with auto_strings function

parent 235c1ea6
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include <string.h> #include <string.h>
#include <oblibs/string.h>
#include <oblibs/directory.h> #include <oblibs/directory.h>
#include <oblibs/log.h> #include <oblibs/log.h>
...@@ -31,9 +32,7 @@ int tree_copy(stralloc *dir, char const *tree,char const *treename) ...@@ -31,9 +32,7 @@ int tree_copy(stralloc *dir, char const *tree,char const *treename)
char *fdir = 0 ; char *fdir = 0 ;
size_t treelen = strlen(tree) ; size_t treelen = strlen(tree) ;
char tmp[treelen + SS_SVDIRS_LEN + 1] ; char tmp[treelen + SS_SVDIRS_LEN + 1] ;
memcpy(tmp,tree,treelen) ; auto_strings(tmp, tree, SS_SVDIRS) ;
memcpy(tmp + treelen,SS_SVDIRS,SS_SVDIRS_LEN) ;
tmp[treelen + SS_SVDIRS_LEN] = 0 ;
fdir = dir_create_tmp(dir,"/tmp",treename) ; fdir = dir_create_tmp(dir,"/tmp",treename) ;
if (!fdir) return 0 ; if (!fdir) return 0 ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment