summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2009-05-01 13:57:45 +0000
committerRoy Marples <roy@marples.name>2009-05-01 13:57:45 +0000
commit601fb3d500ffb57f5ce6eb584c0c481df7870589 (patch)
tree17b6a787d207d02ff2bc26828e7a6f05d8097eca
parent260d960e47803ed857cbab7f42ce73b61e7f61ef (diff)
downloaddhcpcd-601fb3d500ffb57f5ce6eb584c0c481df7870589.tar.xz
Add (c) to Copyright
-rw-r--r--Makefile2
-rw-r--r--README2
-rw-r--r--arp.c2
-rw-r--r--arp.h2
-rw-r--r--bind.c2
-rw-r--r--bind.h2
-rw-r--r--bpf-filter.h2
-rw-r--r--bpf.c2
-rw-r--r--common.c2
-rw-r--r--common.h2
-rw-r--r--config.h2
-rw-r--r--configure.c2
-rw-r--r--configure.h2
-rw-r--r--control.c2
-rw-r--r--control.h2
-rw-r--r--dhcp.c2
-rw-r--r--dhcp.h2
-rw-r--r--dhcpcd-run-hooks.8.in2
-rw-r--r--dhcpcd.8.in2
-rw-r--r--dhcpcd.c2
-rw-r--r--dhcpcd.conf.5.in2
-rw-r--r--dhcpcd.h2
-rw-r--r--duid.c2
-rw-r--r--duid.h2
-rw-r--r--eloop.c2
-rw-r--r--eloop.h2
-rw-r--r--if-bsd.c2
-rw-r--r--if-linux-wireless.c2
-rw-r--r--if-linux.c2
-rw-r--r--if-options.c2
-rw-r--r--if-options.h2
-rw-r--r--if-pref.c2
-rw-r--r--if-pref.h2
-rw-r--r--ipv4ll.c2
-rw-r--r--ipv4ll.h2
-rw-r--r--lpf.c2
-rw-r--r--mk/cc.mk2
-rw-r--r--mk/depend.mk2
-rw-r--r--mk/dist.mk2
-rw-r--r--mk/files.mk2
-rw-r--r--mk/man.mk2
-rw-r--r--mk/os-BSD.mk2
-rw-r--r--mk/os-Darwin.mk2
-rw-r--r--mk/os-Linux.mk2
-rw-r--r--mk/os.mk2
-rw-r--r--mk/prog.mk2
-rw-r--r--mk/scripts.mk2
-rw-r--r--net.c2
-rw-r--r--net.h2
-rw-r--r--signals.c2
-rw-r--r--signals.h2
51 files changed, 51 insertions, 51 deletions
diff --git a/Makefile b/Makefile
index 7949aa9d..43fc05e6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
# Makefile based on BSD make.
# Our mk stubs also work with GNU make.
-# Copyright 2008 Roy Marples <roy@marples.name>
+# Copyright (c) 2008 Roy Marples <roy@marples.name>
PROG= dhcpcd
SRCS= arp.c bind.c common.c control.c dhcp.c dhcpcd.c duid.c eloop.c
diff --git a/README b/README
index 5f9e1b3a..1238631c 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
dhcpcd - DHCP client daemon
-Copyright 2006-2009 Roy Marples <roy@marples.name>
+Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
Installation
diff --git a/arp.c b/arp.c
index bf4d3099..22f72541 100644
--- a/arp.c
+++ b/arp.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/arp.h b/arp.h
index 924d22f9..b97c38bd 100644
--- a/arp.h
+++ b/arp.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/bind.c b/bind.c
index 647e915e..9e97a431 100644
--- a/bind.c
+++ b/bind.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/bind.h b/bind.h
index 8ce10751..375a0f3c 100644
--- a/bind.h
+++ b/bind.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/bpf-filter.h b/bpf-filter.h
index 881f678e..b68ee493 100644
--- a/bpf-filter.h
+++ b/bpf-filter.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff --git a/bpf.c b/bpf.c
index cf1e3d90..beda1ba0 100644
--- a/bpf.c
+++ b/bpf.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff --git a/common.c b/common.c
index 90651c9e..a673d068 100644
--- a/common.c
+++ b/common.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/common.h b/common.h
index 3df9e1ec..d88fa05e 100644
--- a/common.h
+++ b/common.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/config.h b/config.h
index 577f4b34..8f91b0f1 100644
--- a/config.h
+++ b/config.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff --git a/configure.c b/configure.c
index d87a58f3..11ea58a5 100644
--- a/configure.c
+++ b/configure.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/configure.h b/configure.h
index 58b78026..17c506e5 100644
--- a/configure.h
+++ b/configure.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/control.c b/control.c
index 65a98963..a6754e3b 100644
--- a/control.c
+++ b/control.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/control.h b/control.h
index 04d7aa1d..f0faa407 100644
--- a/control.h
+++ b/control.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/dhcp.c b/dhcp.c
index c3c1fb71..f9fb515c 100644
--- a/dhcp.c
+++ b/dhcp.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/dhcp.h b/dhcp.h
index 90e69f52..38719530 100644
--- a/dhcp.h
+++ b/dhcp.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/dhcpcd-run-hooks.8.in b/dhcpcd-run-hooks.8.in
index 7c5990ac..1a3d1ba8 100644
--- a/dhcpcd-run-hooks.8.in
+++ b/dhcpcd-run-hooks.8.in
@@ -1,4 +1,4 @@
-.\" Copyright 2006-2009 Roy Marples
+.\" Copyright (c) 2006-2009 Roy Marples
.\" All rights reserved
.\"
.\" Redistribution and use in source and binary forms, with or without
diff --git a/dhcpcd.8.in b/dhcpcd.8.in
index c3fff0c9..059a35a9 100644
--- a/dhcpcd.8.in
+++ b/dhcpcd.8.in
@@ -1,4 +1,4 @@
-.\" Copyright 2006-2009 Roy Marples
+.\" Copyright (c) 2006-2009 Roy Marples
.\" All rights reserved
.\"
.\" Redistribution and use in source and binary forms, with or without
diff --git a/dhcpcd.c b/dhcpcd.c
index e4f0c511..52fc9b80 100644
--- a/dhcpcd.c
+++ b/dhcpcd.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/dhcpcd.conf.5.in b/dhcpcd.conf.5.in
index ec58b866..a77778cc 100644
--- a/dhcpcd.conf.5.in
+++ b/dhcpcd.conf.5.in
@@ -1,4 +1,4 @@
-.\" Copyright 2006-2009 Roy Marples
+.\" Copyright (c) 2006-2009 Roy Marples
.\" All rights reserved
.\"
.\" Redistribution and use in source and binary forms, with or without
diff --git a/dhcpcd.h b/dhcpcd.h
index 767dc485..6b1d727e 100644
--- a/dhcpcd.h
+++ b/dhcpcd.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/duid.c b/duid.c
index dddb3b94..c2eada20 100644
--- a/duid.c
+++ b/duid.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/duid.h b/duid.h
index cc2224e8..98c1bbd5 100644
--- a/duid.h
+++ b/duid.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/eloop.c b/eloop.c
index 3e2b7a03..5c61445e 100644
--- a/eloop.c
+++ b/eloop.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/eloop.h b/eloop.h
index bad008a3..d699e1ec 100644
--- a/eloop.h
+++ b/eloop.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/if-bsd.c b/if-bsd.c
index 7517e714..5bcf8b5d 100644
--- a/if-bsd.c
+++ b/if-bsd.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/if-linux-wireless.c b/if-linux-wireless.c
index 54b6ddd9..0c7a3831 100644
--- a/if-linux-wireless.c
+++ b/if-linux-wireless.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/if-linux.c b/if-linux.c
index 32ae3d3a..8a4eb362 100644
--- a/if-linux.c
+++ b/if-linux.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/if-options.c b/if-options.c
index 81226978..7a9e5e3d 100644
--- a/if-options.c
+++ b/if-options.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/if-options.h b/if-options.h
index 8fa122ab..396f44ea 100644
--- a/if-options.h
+++ b/if-options.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/if-pref.c b/if-pref.c
index aeeb9f1c..201a8d3f 100644
--- a/if-pref.c
+++ b/if-pref.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/if-pref.h b/if-pref.h
index 18ad5770..dcedd602 100644
--- a/if-pref.h
+++ b/if-pref.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/ipv4ll.c b/ipv4ll.c
index ecb9e26c..023aee09 100644
--- a/ipv4ll.c
+++ b/ipv4ll.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/ipv4ll.h b/ipv4ll.h
index 8c1d7e52..a5d8e9ae 100644
--- a/ipv4ll.h
+++ b/ipv4ll.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/lpf.c b/lpf.c
index 550277ef..2907d908 100644
--- a/lpf.c
+++ b/lpf.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff --git a/mk/cc.mk b/mk/cc.mk
index 3af82a09..0d572d3a 100644
--- a/mk/cc.mk
+++ b/mk/cc.mk
@@ -1,4 +1,4 @@
-# Copyright 2008 Roy Marples <roy@marples.name>
+# Copyright (c) 2008 Roy Marples <roy@marples.name>
# Setup some good default CFLAGS
CFLAGS?= -O2
diff --git a/mk/depend.mk b/mk/depend.mk
index 8dad1d91..ec74b54f 100644
--- a/mk/depend.mk
+++ b/mk/depend.mk
@@ -1,5 +1,5 @@
# Generate .depend
-# Copyright 2008 Roy Marples <roy@marples.name>
+# Copyright (c) 2008 Roy Marples <roy@marples.name>
CLEANFILES+= .depend
diff --git a/mk/dist.mk b/mk/dist.mk
index 7b844daf..dd345d0b 100644
--- a/mk/dist.mk
+++ b/mk/dist.mk
@@ -1,5 +1,5 @@
# rules to make a distribution tarball from a svn repo
-# Copyright 2008-2009 Roy Marples <roy@marples.name>
+# Copyright (c) 2008-2009 Roy Marples <roy@marples.name>
GITREF?= HEAD
DISTPREFIX?= ${PROG}-${VERSION}
diff --git a/mk/files.mk b/mk/files.mk
index 0682b034..e2c4087a 100644
--- a/mk/files.mk
+++ b/mk/files.mk
@@ -1,5 +1,5 @@
# Quick and dirty files
-# Copyright 2008 Roy Marples <roy@marples.name>
+# Copyright (c) 2008 Roy Marples <roy@marples.name>
FILESDIR?= ${BINDIR}
FILESMODE?= ${NONBINMODE}
diff --git a/mk/man.mk b/mk/man.mk
index f1570bb3..054f5e72 100644
--- a/mk/man.mk
+++ b/mk/man.mk
@@ -1,5 +1,5 @@
# rules to install manpages
-# Copyright 2008 Roy Marples <roy@marples.name>
+# Copyright (c) 2008 Roy Marples <roy@marples.name>
_MANPREFIX_SH= if [ -n "${PREFIX}" ]; then echo "${PREFIX}"; else echo "/usr/share"; fi
_MANPREFIX!= ${_MANPREFIX_SH}
diff --git a/mk/os-BSD.mk b/mk/os-BSD.mk
index f9d33975..d4162b0f 100644
--- a/mk/os-BSD.mk
+++ b/mk/os-BSD.mk
@@ -1,5 +1,5 @@
# Setup OS specific variables
-# Copyright 2008 Roy Marples <roy@marples.name>
+# Copyright (c) 2008 Roy Marples <roy@marples.name>
SRC_PF= bpf.c
SRC_IF= if-bsd.c
diff --git a/mk/os-Darwin.mk b/mk/os-Darwin.mk
index f2c3104e..5fdff19a 100644
--- a/mk/os-Darwin.mk
+++ b/mk/os-Darwin.mk
@@ -1,5 +1,5 @@
# Setup OS specific variables
-# Copyright 2008 Roy Marples <roy@marples.name>
+# Copyright (c) 2008 Roy Marples <roy@marples.name>
include ${MK}/os-BSD.mk
LINK_RPATH= --rpath
diff --git a/mk/os-Linux.mk b/mk/os-Linux.mk
index 7b6e460b..2922e1bf 100644
--- a/mk/os-Linux.mk
+++ b/mk/os-Linux.mk
@@ -1,5 +1,5 @@
# Setup OS specific variables
-# Copyright 2008 Roy Marples <roy@marples.name>
+# Copyright (c) 2008 Roy Marples <roy@marples.name>
SRC_PF= lpf.c
SRC_IF= if-linux.c
diff --git a/mk/os.mk b/mk/os.mk
index f3426e48..040f4e86 100644
--- a/mk/os.mk
+++ b/mk/os.mk
@@ -1,5 +1,5 @@
# Setup OS specific variables
-# Copyright 2008 Roy Marples <roy@marples.name>
+# Copyright (c) 2008 Roy Marples <roy@marples.name>
_OS_SH= case `uname -s` in Linux) echo "Linux";; Darwin) echo "Darwin";; *) echo "BSD";; esac
_OS!= ${_OS_SH}
diff --git a/mk/prog.mk b/mk/prog.mk
index 6b1eb3c3..c835bcae 100644
--- a/mk/prog.mk
+++ b/mk/prog.mk
@@ -1,7 +1,7 @@
# rules to build a program
# based on FreeBSD's bsd.prog.mk
-# Copyright 2008 Roy Marples <roy@marples.name>
+# Copyright (c) 2008 Roy Marples <roy@marples.name>
include ${MK}/cc.mk
diff --git a/mk/scripts.mk b/mk/scripts.mk
index d295163c..28203ba8 100644
--- a/mk/scripts.mk
+++ b/mk/scripts.mk
@@ -1,5 +1,5 @@
# Quick and dirty scripts
-# Copyright 2008 Roy Marples <roy@marples.name>
+# Copyright (c) 2008 Roy Marples <roy@marples.name>
SCRIPTSDIR?= ${BINDIR}
SCRIPTSMODE?= ${BINMODE}
diff --git a/net.c b/net.c
index bce10d19..a52901ed 100644
--- a/net.c
+++ b/net.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/net.h b/net.h
index 0ee3e67a..7c7c24c6 100644
--- a/net.h
+++ b/net.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/signals.c b/signals.c
index 835536fa..f5c67ed5 100644
--- a/signals.c
+++ b/signals.c
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2009 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2009 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/signals.h b/signals.h
index 76b13f52..7098cfb1 100644
--- a/signals.h
+++ b/signals.h
@@ -1,6 +1,6 @@
/*
* dhcpcd - DHCP client daemon
- * Copyright 2006-2008 Roy Marples <roy@marples.name>
+ * Copyright (c) 2006-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without