aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--LICENSE2
-rw-r--r--Makefile2
-rw-r--r--config.mk2
-rw-r--r--slock.c4
4 files changed, 5 insertions, 5 deletions
diff --git a/LICENSE b/LICENSE
index aa0a3ab..3646c7d 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
1MIT/X Consortium License 1MIT/X Consortium License
2 2
3(C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> 3(C)opyright MMVI-MMVII 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 a84e889..2254925 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
1# slock - simple screen locker 1# slock - simple screen locker
2# (C)opyright MMVI Anselm R. Garbe 2# (C)opyright MMVI-MMVII Anselm R. Garbe
3 3
4include config.mk 4include config.mk
5 5
diff --git a/config.mk b/config.mk
index df3b2dc..22a1585 100644
--- a/config.mk
+++ b/config.mk
@@ -1,5 +1,5 @@
1# slock version 1# slock version
2VERSION = 0.3 2VERSION = 0.4
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 aafc7c0..94cb26b 100644
--- a/slock.c
+++ b/slock.c
@@ -1,4 +1,4 @@
1/* (C)opyright MMIV-MMV Anselm R. Garbe <garbeam at gmail dot com> 1/* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
2 * See LICENSE file for license details. 2 * See LICENSE file for license details.
3 */ 3 */
4#define _XOPEN_SOURCE 500 4#define _XOPEN_SOURCE 500
@@ -122,7 +122,7 @@ main(int argc, char **argv) {
122 --len; 122 --len;
123 break; 123 break;
124 default: 124 default:
125 if(num && !iscntrl((int) buf[0])) { 125 if(num && !iscntrl((int) buf[0]) && (len + num < sizeof passwd)) {
126 memcpy(passwd + len, buf, num); 126 memcpy(passwd + len, buf, num);
127 len += num; 127 len += num;
128 } 128 }