OSDN Git Service

Most things seem to want the "b" suffix to mean 512 instead of 1.
authorRob Landley <rob@landley.net>
Mon, 26 Jun 2017 20:32:27 +0000 (15:32 -0500)
committerRob Landley <rob@landley.net>
Mon, 26 Jun 2017 20:32:27 +0000 (15:32 -0500)
(According to the git history I added "b" for "od" but the man page says 512
there too.)

lib/lib.c

index ceb1bc7..6e88fd2 100644 (file)
--- a/lib/lib.c
+++ b/lib/lib.c
@@ -299,11 +299,12 @@ long long atolx(char *numstr)
 
   val = xstrtol(numstr, &c, 0);
   if (c != numstr && *c && (end = strchr(suffixes, tolower(*c)))) {
-    int shift = end-suffixes-2;
+    int shift = end-suffixes-1;
 
-    if (shift >= 0) {
-      if (toupper(*++c)=='d') do val *= 1000; while (shift--);
-      else val *= 1024LL<<(shift*10);
+    if (!shift) val *= 512;
+    else if (shift>0) {
+      if (toupper(*++c)=='d') while (shift--) val *= 1000;
+      else val *= 1LL<<(shift*10);
     }
   }
   while (isspace(*c)) c++;