From: Wouter Verhelst Date: Sat, 31 Jan 2009 02:00:55 +0000 (+0100) Subject: use atoll instead of atol X-Git-Url: http://git.alex.org.uk use atoll instead of atol ... so that multi-terabyte exports work, too. --- diff --git a/nbd-server.c b/nbd-server.c index 754d21a..5c35e06 100644 --- a/nbd-server.c +++ b/nbd-server.c @@ -442,7 +442,7 @@ SERVER* cmdline(int argc, char *argv[]) { if (suffix == 'k' || suffix == 'K' || suffix == 'm' || suffix == 'M') optarg[last] = '\0'; - es = (off_t)atol(optarg); + es = (off_t)atoll(optarg); switch (suffix) { case 'm': case 'M': es <<= 10;