aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-04-13 11:48:17 +0200
committerAnselm R. Garbe <arg@suckless.org>2007-04-13 11:48:17 +0200
commit20e294a66f4925b7db43e77ddcb0b885fedeca18 (patch)
tree4e1e6ac804752dee56647a6a515e3560818c6958
parent1726ff0816c5eed237e8ae072f93ec3389889107 (diff)
updating copyright stuff in slock as well
-rw-r--r--LICENSE2
-rw-r--r--Makefile2
-rw-r--r--config.mk2
-rw-r--r--slock.c7
4 files changed, 6 insertions, 7 deletions
diff --git a/LICENSE b/LICENSE
index 3646c7d..9425c10 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
1MIT/X Consortium License 1MIT/X Consortium License
2 2
3(C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com> 3© 2006-2007 Anselm R. Garbe <garbeam at gmail dot com>
4 4
5Permission is hereby granted, free of charge, to any person obtaining a 5Permission is hereby granted, free of charge, to any person obtaining a
6copy of this software and associated documentation files (the "Software"), 6copy of this software and associated documentation files (the "Software"),
diff --git a/Makefile b/Makefile
index 2254925..05e88b4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
1# slock - simple screen locker 1# slock - simple screen locker
2# (C)opyright MMVI-MMVII Anselm R. Garbe 2# © 2006-2007 Anselm R. Garbe, Sander van Dijk
3 3
4include config.mk 4include config.mk
5 5
diff --git a/config.mk b/config.mk
index cea3d12..1a17285 100644
--- a/config.mk
+++ b/config.mk
@@ -1,5 +1,5 @@
1# slock version 1# slock version
2VERSION = 0.6 2VERSION = 0.7
3 3
4# Customize below to fit your system 4# Customize below to fit your system
5 5
diff --git a/slock.c b/slock.c
index 7aace90..866df90 100644
--- a/slock.c
+++ b/slock.c
@@ -1,6 +1,5 @@
1/* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com> 1/* © 2006-2007 Anselm R. Garbe <garbeam at gmail dot com>
2 * See LICENSE file for license details. 2 * See LICENSE file for license details. */
3 */
4#define _XOPEN_SOURCE 500 3#define _XOPEN_SOURCE 500
5#if HAVE_SHADOW_H 4#if HAVE_SHADOW_H
6#include <shadow.h> 5#include <shadow.h>
@@ -64,7 +63,7 @@ main(int argc, char **argv) {
64 XSetWindowAttributes wa; 63 XSetWindowAttributes wa;
65 64
66 if((argc > 1) && !strncmp(argv[1], "-v", 3)) { 65 if((argc > 1) && !strncmp(argv[1], "-v", 3)) {
67 fputs("slock-"VERSION", (C)opyright MMVI Anselm R. Garbe\n", stdout); 66 fputs("slock-"VERSION", © 2006-2007 Anselm R. Garbe\n", stdout);
68 exit(EXIT_SUCCESS); 67 exit(EXIT_SUCCESS);
69 } 68 }
70 pws = get_password(); 69 pws = get_password();