summaryrefslogtreecommitdiffstats
path: root/client-fn.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-07-01 20:35:16 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-07-01 20:35:16 +0000
commite5cf8594e813af20067355a4f63c6d3511b3b5fd (patch)
tree69a17531e01b8f66d8f2661243e4d122d3874212 /client-fn.c
parentdd41035a4d71057108da8c7b5e1876cc02b4995c (diff)
long for pid.
Diffstat (limited to 'client-fn.c')
-rw-r--r--client-fn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/client-fn.c b/client-fn.c
index 598d520b..f2cd816b 100644
--- a/client-fn.c
+++ b/client-fn.c
@@ -1,4 +1,4 @@
-/* $Id: client-fn.c,v 1.3 2007-10-23 10:48:22 nicm Exp $ */
+/* $Id: client-fn.c,v 1.4 2008-07-01 20:35:16 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -45,7 +45,7 @@ client_fill_session(struct msg_command_data *data)
return;
data->idx = ll;
- ll = strtonum(buf, 0, LLONG_MAX, &errstr);
+ ll = strtonum(buf, 0, LONG_MAX, &errstr);
if (errstr != NULL)
return;
data->pid = ll;