You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mkdir can fail e.g. when .cache does not exists. the errormsg generated from perror() is not helpful since it is not mentioned what file.
just replacing perror("Mkdir") with something like:
fprintf(stderr, "no backup - failed to create %s:%s ", backup_dir,strerror(errno));
help to see the problem.
The text was updated successfully, but these errors were encountered:
mkdir can fail e.g. when .cache does not exists. the errormsg generated from perror() is not helpful since it is not mentioned what file.
just replacing perror("Mkdir") with something like:
fprintf(stderr, "no backup - failed to create %s:%s ", backup_dir,strerror(errno));
help to see the problem.
The text was updated successfully, but these errors were encountered: