X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/97cb8dc29b9e6a4f46f9b7162d410fdab0f7d8af..1b8e662a24ee169b7b37c1f2eae9bd399b683332:/loadparm.c diff --git a/loadparm.c b/loadparm.c index 8fe8e8d8..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] %m (%u) %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); }