Fwd: patch to fix issues with spaces in file names
Kirk Bauer <[email protected]>
| Newsgroups | gmane.comp.log.logwatch.devel |
|---|---|
| Message-ID | <[email protected]> |
---------- Forwarded message ---------- From: Brian W. Neu <[email protected]> Date: Sat, Jan 23, 2010 at 12:20 PM Subject: patch to fix issues with spaces in file names To: [email protected] Samba on Fedora is configured to create a log based on the username of the workstation, which often times includes a space. This prevents cron from emailing after cat has griped about two files not existing. -- Brian W. Neu Principal Advanced Open Systems, Inc. Technology Applied for Business 404.452.0043 (v) 404.418.6911 (f) _______________________________________________ Logwatch-Devel mailing list [email protected] http://www2.list.logwatch.org:81/mailman/listinfo/logwatch-devel
logwatch-patch
(text/plain, 100 B)
916c916
< $FileText .= ($ThisFile . " ");
---
> $FileText .= ('"' . $ThisFile . "\" ");