X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fposixver.c;h=796417392649f0b22e204a00f6c6495673f34e60;hb=d913c90f6a01f889db65cbb516683aab2f28c533;hp=73a648256634091aff56d7287f5821e3325ae06c;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/lib/posixver.c b/lib/posixver.c index 73a648256..796417392 100644 --- a/lib/posixver.c +++ b/lib/posixver.c @@ -1,7 +1,6 @@ /* Which POSIX version to conform to, for utilities. - Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software - Foundation, Inc. + Copyright (C) 2002-2006, 2009-2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -48,7 +47,7 @@ posix2_version (void) char *e; long int i = strtol (s, &e, 10); if (! *e) - v = i; + v = i; } return v < INT_MIN ? INT_MIN : v < INT_MAX ? v : INT_MAX;