X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/e08bfe1248d9640e77544fe7df50573c6e8843b3..654175798bdbdd6403e10c8fa74e8586b3612ea1:/loadparm.c?ds=sidebyside diff --git a/loadparm.c b/loadparm.c index 150c618c..6814d13a 100644 --- a/loadparm.c +++ b/loadparm.c @@ -151,7 +151,7 @@ static service sDefault = NULL, /* secrets file */ NULL, /* exclude */ NULL, /* exclude from */ - "%o %h [%a] %f %l", /* log format */ + "%o %h [%a] %m (%u) %f %l", /* log format */ }; @@ -358,7 +358,7 @@ static void string_set(char **s, char *v) return; } *s = strdup(v); - if (!*s) exit_cleanup(1); + if (!*s) exit_cleanup(RERR_MALLOC); }