Imported Upstream version 4.0.43
[platform/upstream/mtools.git] / misc.c
diff --git a/misc.c b/misc.c
index d55c805..60c826a 100644 (file)
--- a/misc.c
+++ b/misc.c
@@ -18,9 +18,7 @@
  */
 
 #include "sysincludes.h"
-#include "msdos.h"
 #include "stream.h"
-#include "vfat.h"
 #include "mtools.h"
 
 
@@ -36,29 +34,29 @@ char *get_homedir(void)
        uid_t uid;
        char *homedir;
        char *username;
-       
-       homedir = getenv ("HOME");    
-       /* 
-        * first we call getlogin. 
-        * There might be several accounts sharing one uid 
+
+       homedir = getenv ("HOME");
+       /*
+        * first we call getlogin.
+        * There might be several accounts sharing one uid
         */
        if ( homedir )
                return homedir;
-       
+
        pw = 0;
-       
+
        username = getenv("LOGNAME");
        if ( !username )
                username = getlogin();
        if ( username )
                pw = getpwnam( username);
-  
+
        if ( pw == 0 ){
                /* if we can't getlogin, look up the pwent by uid */
                uid = geteuid();
                pw = getpwuid(uid);
        }
-       
+
        /* we might still get no entry */
        if ( pw )
                return pw->pw_dir;
@@ -100,7 +98,7 @@ FILE *open_mcwd(const char *mode)
        struct MT_STAT sbuf;
        char file[MAXPATHLEN+1];
        time_t now;
-       
+
        get_mcwd_file_name(file);
        if (*mode == 'r'){
                if (MT_STAT(file, &sbuf) < 0)
@@ -117,10 +115,10 @@ FILE *open_mcwd(const char *mode)
                        return NULL;
                }
        }
-       
+
        return  fopen(file, mode);
 }
-       
+
 
 
 void *safe_malloc(size_t size)
@@ -141,10 +139,10 @@ void print_sector(const char *message, unsigned char *data, int size)
        int row;
 
        printf("%s:\n", message);
-       
+
        for(row = 0; row * 16 < size; row++){
                printf("%03x  ", row * 16);
-               for(col = 0; col < 16; col++)                   
+               for(col = 0; col < 16; col++)
                        printf("%02x ", data [row*16+col]);
                for(col = 0; col < 16; col++) {
                        if(isprint(data [row*16+col]))
@@ -193,7 +191,7 @@ time_t getTimeNow(time_t *now)
                        }
                }
        }
-       
+
        if(!haveTime) {
                time(&sharedNow);
                haveTime = 1;
@@ -231,12 +229,12 @@ off_t str_to_offset_with_end(const char *str, char **endp) {
 /* Convert a string to a size. The string should be a number,
    optionally followed by S (sectors), K (K-Bytes), M (Megabytes), G
    (Gigabytes) */
-size_t str_to_size_with_end(const char *str, char **endp) {
+mt_off_t str_to_off_with_end(const char *str, char **endp) {
        char s;
-       size_t siz;
+       mt_off_t siz;
 
        *endp = NULL;
-       siz = strtoul(str, endp, 0);
+       siz = strtol(str, endp, 0);
        s = **endp;
        /* trailing char, see if it is a size specifier */
        if (s == 's' || s == 'S')       /* sector */
@@ -263,6 +261,8 @@ off_t str_to_offset(char *str) {
        return ofs;
 }
 
+
+
 #if 0
 
 #undef free