diff options
-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 @@ | |||
1 | MIT/X Consortium License | 1 | MIT/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 | ||
5 | Permission is hereby granted, free of charge, to any person obtaining a | 5 | Permission is hereby granted, free of charge, to any person obtaining a |
6 | copy of this software and associated documentation files (the "Software"), | 6 | copy of this software and associated documentation files (the "Software"), |
@@ -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 | ||
4 | include config.mk | 4 | include config.mk |
5 | 5 | ||
@@ -1,5 +1,5 @@ | |||
1 | # slock version | 1 | # slock version |
2 | VERSION = 0.6 | 2 | VERSION = 0.7 |
3 | 3 | ||
4 | # Customize below to fit your system | 4 | # Customize below to fit your system |
5 | 5 | ||
@@ -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(); |