diff options
author | Wayne Davison <wayned@samba.org> | 2003-09-11 04:53:01 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2003-09-11 04:53:01 +0000 |
commit | b7b2741f3ae6a0bb58d6051940bf761b7d05b0b2 (patch) | |
tree | a7fcbe169a0f0f6fc11e371342512f5e7be518ac | |
parent | eb61be192de5bb899bedb851f69981e191ba1853 (diff) | |
download | rsync-b7b2741f3ae6a0bb58d6051940bf761b7d05b0b2.tar.gz rsync-b7b2741f3ae6a0bb58d6051940bf761b7d05b0b2.tar.bz2 rsync-b7b2741f3ae6a0bb58d6051940bf761b7d05b0b2.zip |
Tweaked an error message.
-rw-r--r-- | options.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -397,7 +397,7 @@ void option_error(void) { if (err_buf[0]) { rprintf(FLOG, "%s", err_buf); - rprintf(FERROR, "%s: %s", RSYNC_NAME, err_buf); + rprintf(FERROR, RSYNC_NAME ": %s", err_buf); } else { rprintf (FERROR, "Error parsing options: " "option may be supported on client but not on server?\n"); |