diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-04-13 11:48:17 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-04-13 11:48:17 +0200 |
commit | 20e294a66f4925b7db43e77ddcb0b885fedeca18 (patch) | |
tree | 4e1e6ac804752dee56647a6a515e3560818c6958 | |
parent | 1726ff0816c5eed237e8ae072f93ec3389889107 (diff) | |
download | slock-20e294a66f4925b7db43e77ddcb0b885fedeca18.tar.gz slock-20e294a66f4925b7db43e77ddcb0b885fedeca18.tar.xz |
updating copyright stuff in slock as well
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | config.mk | 2 | ||||
-rw-r--r-- | slock.c | 7 |
4 files changed, 6 insertions, 7 deletions
@@ -1,6 +1,6 @@ MIT/X Consortium License -(C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com> +© 2006-2007 Anselm R. Garbe <garbeam at gmail dot com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -1,5 +1,5 @@ # slock - simple screen locker -# (C)opyright MMVI-MMVII Anselm R. Garbe +# © 2006-2007 Anselm R. Garbe, Sander van Dijk include config.mk @@ -1,5 +1,5 @@ # slock version -VERSION = 0.6 +VERSION = 0.7 # Customize below to fit your system @@ -1,6 +1,5 @@ -/* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com> - * See LICENSE file for license details. - */ +/* © 2006-2007 Anselm R. Garbe <garbeam at gmail dot com> + * See LICENSE file for license details. */ #define _XOPEN_SOURCE 500 #if HAVE_SHADOW_H #include <shadow.h> @@ -64,7 +63,7 @@ main(int argc, char **argv) { XSetWindowAttributes wa; if((argc > 1) && !strncmp(argv[1], "-v", 3)) { - fputs("slock-"VERSION", (C)opyright MMVI Anselm R. Garbe\n", stdout); + fputs("slock-"VERSION", © 2006-2007 Anselm R. Garbe\n", stdout); exit(EXIT_SUCCESS); } pws = get_password(); |