* Timo T. Rajala <[EMAIL PROTECTED]> writes:
> Here is the commands and the output from them:
> ~$ smime_keys init
> Died at /usr/local/bin/smime_keys line 236.
Should have included relevant rows from 'smime_keys', here they are:
231 # directory setup routines
232 #
233
234
235 sub mkdir_recursive ($) {
236 my $path = shift or die;
237 my $tmp_path;
238
239 for my $dir (split /\//, $path) {
240 $tmp_path .= "$dir/";
241
242 -d $tmp_path
243 or mkdir $tmp_path, 0700
244 or die "Can't mkdir $tmp_path: $!";
245 }
246 }
--
Timo T. Rajala