From e5cf8594e813af20067355a4f63c6d3511b3b5fd Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 1 Jul 2008 20:35:16 +0000 Subject: long for pid. --- client-fn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'client-fn.c') 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 @@ -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; -- cgit