summaryrefslogtreecommitdiffstats
path: root/dhcpcd.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2014-01-24 11:00:38 +0000
committerRoy Marples <roy@marples.name>2014-01-24 11:00:38 +0000
commit3582c56dcdc12294a84b38dd7a32ce00ac6b0d25 (patch)
treec05b2b42eb6cf3c62f001d26f19d35528736b23b /dhcpcd.c
parente882d2b76b0d180f46dc78566a52837d22247dae (diff)
downloaddhcpcd-3582c56dcdc12294a84b38dd7a32ce00ac6b0d25.tar.xz
Add prefix to copyright constant.
Thanks to Sebastian Huber.
Diffstat (limited to 'dhcpcd.c')
-rw-r--r--dhcpcd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dhcpcd.c b/dhcpcd.c
index d67873d6..57687159 100644
--- a/dhcpcd.c
+++ b/dhcpcd.c
@@ -25,7 +25,7 @@
* SUCH DAMAGE.
*/
-const char copyright[] = "Copyright (c) 2006-2014 Roy Marples";
+const char dhcpcd_copyright[] = "Copyright (c) 2006-2014 Roy Marples";
#include <sys/file.h>
#include <sys/socket.h>
@@ -1109,7 +1109,7 @@ main(int argc, char **argv)
usage();
exit(EXIT_SUCCESS);
} else if (strcmp(argv[1], "--version") == 0) {
- printf(""PACKAGE" "VERSION"\n%s\n", copyright);
+ printf(""PACKAGE" "VERSION"\n%s\n", dhcpcd_copyright);
exit(EXIT_SUCCESS);
}
}