diff options
author | 2007-03-28 04:05:52 +0000 | |
---|---|---|
committer | 2007-03-28 04:05:52 +0000 | |
commit | d23b33027f43b018be6f236512bdd1f04ac3e5ce (patch) | |
tree | 21c7094fe48f7e5113f4964b74041c6121125b05 /usr.bin/sendbug/sendbug.c | |
parent | Bump max number of physical segments. Machines in the wild (diff) | |
download | wireguard-openbsd-d23b33027f43b018be6f236512bdd1f04ac3e5ce.tar.xz wireguard-openbsd-d23b33027f43b018be6f236512bdd1f04ac3e5ce.zip |
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"); |