X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib.c;h=a81ecdaab0a49636622ac4a32e4cab7b1dd2cf2b;hp=b57070be6707ace6d717bea72a54a10caf137710;hb=82d5d8ffc8cd4cf837736187eba9ddfd8b2e2f7f;hpb=0f44dc85fc1280372ffab911d701e703d803fb4b diff --git a/lib.c b/lib.c index b57070b..a81ecda 100644 --- a/lib.c +++ b/lib.c @@ -32,6 +32,7 @@ #include "lib/mem.h" #include "lib/str.h" +#include "lib/debug.h" extern short Umask; @@ -104,7 +105,7 @@ int mutt_copy_bytes (FILE * in, FILE * out, size_t size) if ((chunk = fread (buf, 1, chunk, in)) < 1) break; if (fwrite (buf, 1, chunk, out) != chunk) { - /* dprint (1, (debugfile, "mutt_copy_bytes(): fwrite() returned short byte count\n")); */ + debug_print (1, ("fwrite() returned short byte count\n")); return (-1); } size -= chunk; @@ -154,7 +155,7 @@ int safe_symlink (const char *oldpath, const char *newpath) char abs_oldpath[_POSIX_PATH_MAX]; if ((getcwd (abs_oldpath, sizeof abs_oldpath) == NULL) || - (safe_strlen (abs_oldpath) + 1 + safe_strlen (oldpath) + 1 > + (mutt_strlen (abs_oldpath) + 1 + mutt_strlen (oldpath) + 1 > sizeof abs_oldpath)) return -1; @@ -250,7 +251,7 @@ int safe_open (const char *path, int flags) /* make sure the file is not symlink */ if (lstat (path, &osb) < 0 || fstat (fd, &nsb) < 0 || compare_stat (&osb, &nsb) == -1) { -/* dprint (1, (debugfile, "safe_open(): %s is a symlink!\n", path)); */ + debug_print (1, ("%s is a symlink!\n", path)); close (fd); return (-1); } @@ -415,7 +416,7 @@ char *mutt_concat_path (char *d, const char *dir, const char *fname, size_t l) { const char *fmt = "%s/%s"; - if (!*fname || (*dir && dir[safe_strlen (dir) - 1] == '/')) + if (!*fname || (*dir && dir[mutt_strlen (dir) - 1] == '/')) fmt = "%s%s"; snprintf (d, l, fmt, dir, fname);