Fix typo in mail message from --monitor

From: martin f krafft <madduck@madduck.net>

Signed-off-by: Neil Brown <neilb@suse.de>
This commit is contained in:
Neil Brown 2006-06-02 01:34:30 +00:00
parent e52f8e251a
commit a524a7ee7e
1 changed files with 1 additions and 1 deletions

View File

@ -519,7 +519,7 @@ static void alert(char *event, char *dev, char *disc, char *mailaddr, char *mail
if (mdstat) {
char buf[8192];
int n;
fprintf(mp, "\nP.S. The /proc/mdstat file current contains the following:\n\n");
fprintf(mp, "\nP.S. The /proc/mdstat file currently contains the following:\n\n");
while ( (n=fread(buf, 1, sizeof(buf), mdstat)) > 0)
n=fwrite(buf, 1, n, mp); /* yes, i don't care about the result */
fclose(mdstat);