diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2007-03-28 04:05:53 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2007-03-28 04:05:53 +0000 |
commit | 9d242002a0eb99a1b6aeafc909419763723fbf79 (patch) | |
tree | 1b35e02810ed613cef3aab48066039985406ffbe /usr.bin/sendbug/sendbug.c | |
parent | a4a156436ce36f9b6b94dca66c69cb3d23683b45 (diff) |
CC: a copy of the bug report to sender. Requested by Travers Buda.
OK millert@.
Diffstat (limited to 'usr.bin/sendbug/sendbug.c')
-rw-r--r-- | usr.bin/sendbug/sendbug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/sendbug/sendbug.c b/usr.bin/sendbug/sendbug.c index ac59d25f411..f849ac2c742 100644 --- a/usr.bin/sendbug/sendbug.c +++ b/usr.bin/sendbug/sendbug.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sendbug.c,v 1.33 2007/03/27 04:15:00 ray Exp $ */ +/* $OpenBSD: sendbug.c,v 1.34 2007/03/28 04:05:52 ray Exp $ */ /* * Written by Ray Lai <ray@cyth.net>. @@ -425,7 +425,7 @@ template(FILE *fp) fprintf(fp, "To: %s\n", "gnats@openbsd.org"); fprintf(fp, "Subject: \n"); fprintf(fp, "From: %s\n", pw->pw_name); - fprintf(fp, "Cc: \n"); + fprintf(fp, "Cc: %s\n", pw->pw_name); fprintf(fp, "Reply-To: %s\n", pw->pw_name); fprintf(fp, "X-sendbug-version: %s\n", version); fprintf(fp, "\n"); |