summaryrefslogtreecommitdiff
path: root/slock.c
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-07-29 19:14:53 +0100
committerAnselm R Garbe <garbeam@gmail.com>2008-07-29 19:14:53 +0100
commit75dd7792456d9eb4a4c3142b81fbda5ca39a3a51 (patch)
tree1e8ceb74ff2a2a340fac23cc81892faa751b6e9f /slock.c
parent1460b14f450d65c68bf519538de5b5df1a7bc01c (diff)
prepared release
Diffstat (limited to 'slock.c')
-rw-r--r--slock.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/slock.c b/slock.c
index d576c0b..6f2e8af 100644
--- a/slock.c
+++ b/slock.c
@@ -22,7 +22,7 @@
#include <bsd_auth.h>
#endif
-void
+static void
die(const char *errstr, ...) {
va_list ap;
@@ -33,7 +33,7 @@ die(const char *errstr, ...) {
}
#ifndef HAVE_BSD_AUTH
-const char *
+static const char *
get_password() { /* only run as root */
const char *rval;
struct passwd *pw;
@@ -132,11 +132,12 @@ main(int argc, char **argv) {
if(ev.type == KeyPress) {
buf[0] = 0;
num = XLookupString(&ev.xkey, buf, sizeof buf, &ksym, 0);
- if(IsKeypadKey(ksym))
+ if(IsKeypadKey(ksym)) {
if(ksym == XK_KP_Enter)
ksym = XK_Return;
else if(ksym >= XK_KP_0 && ksym <= XK_KP_9)
ksym = (ksym - XK_KP_0) + XK_0;
+ }
if(IsFunctionKey(ksym) || IsKeypadKey(ksym)
|| IsMiscFunctionKey(ksym) || IsPFKey(ksym)
|| IsPrivateKeypadKey(ksym))