bugfix: tarmode flagless

This commit is contained in:
Michael Stumpf (ifhcluster) 2019-03-29 12:20:58 +01:00
parent f74f51a0b5
commit e6adedb88d
1 changed files with 2 additions and 2 deletions

View File

@ -175,9 +175,9 @@ function [u,v,w,p] = read_uvwp_complete_ucf(file,varargin)
ifile = ifile+1;
switch class(file)
case 'char'
fname = sprintf('uvwp.%05d',ifile);
case {'ustar','ucfmulti'}
fname = sprintf('%s/%s.%05d',fdir,fbase,ifile);
case {'ustar','ucfmulti'}
fname = sprintf('uvwp.%05d',ifile);
end
end
end