X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/ac1eb754b84f74eaba1663a07f7ff068bd280ce6..720b47f2611d277684b2ec35d11dc3feedb207fe:/main.c diff --git a/main.c b/main.c index 4a2079df..a2733e64 100644 --- a/main.c +++ b/main.c @@ -235,6 +235,8 @@ static char *get_local_name(struct file_list *flist,char *name) if (mkdir(name,0777) != 0) { fprintf(stderr,"mkdir %s : %s\n",name,strerror(errno)); exit(1); + } else { + fprintf(am_server?stderr:stdout,"created directory %s\n",name); } if (chdir(name) != 0) {