I don't care about the release date.
[apps/madmutt.git] / dotlock.c
index eb761ad..8fdc117 100644 (file)
--- a/dotlock.c
+++ b/dotlock.c
 #include <getopt.h>
 #endif
 
-#ifdef DL_STANDALONE
-# include "reldate.h"
-#endif
-
 #define MAXLINKS 1024           /* maximum link depth */
 
 #ifdef DL_STANDALONE
@@ -55,8 +51,6 @@
 # define LONG_STRING 1024
 # define MAXLOCKATTEMPT 5
 
-# define strfcpy(A,B,C) strncpy (A,B,C), *(A+(C)-1)=0
-
 # ifdef USE_SETGID
 
 #  ifdef HAVE_SETEGID
@@ -85,6 +79,8 @@ extern int snprintf (char *, size_t, const char *, ...);
 
 #endif /* DL_STANDALONE */
 
+#include <lib-lib/str.h>
+
 static int DotlockFlags;
 static int Retry = MAXLOCKATTEMPT;
 
@@ -126,10 +122,6 @@ static int dotlock_lock (const char *);
 
 #define check_flags(a) if (a & DL_FL_ACTIONS) usage (argv[0])
 
-size_t mutt_strlen (const char* s) {
-  return (s ? strlen (s) : 0);
-}
-
 int main (int argc, char **argv)
 {
   int i;
@@ -342,7 +334,7 @@ static void END_PRIVILEGED (void)
 
 static void usage (const char *av0)
 {
-  fprintf (stderr, "dotlock [Mutt-ng %s (%s)]\n", VERSION, ReleaseDate);
+  fprintf (stderr, "dotlock [Mutt-ng %s]\n", VERSION);
   fprintf (stderr, "usage: %s [-t|-f|-u|-d] [-p] [-r <retries>] file\n", av0);
 
   fputs ("\noptions:"
@@ -453,10 +445,10 @@ static int dotlock_prepare (char *bn, size_t l, const char *f, int _fd)
     dirname = ".";
   }
 
-  if (mutt_strlen (basename) + 1 > l)
+  if (m_strlen(basename) + 1 > l)
     return -1;
 
-  strfcpy (bn, basename, l);
+  m_strcpy(bn, l, basename);
 
   if (chdir (dirname) == -1)
     return -1;
@@ -499,19 +491,19 @@ dotlock_expand_link (char *newpath, const char *path, const char *link)
 
   /* link is full path */
   if (*link == '/') {
-    strfcpy (newpath, link, _POSIX_PATH_MAX);
+    m_strcpy(newpath, _POSIX_PATH_MAX, link);
     return;
   }
 
   if ((lb = strrchr (path, '/')) == NULL) {
     /* no path in link */
-    strfcpy (newpath, link, _POSIX_PATH_MAX);
+    m_strcpy(newpath, _POSIX_PATH_MAX, link);
     return;
   }
 
   len = lb - path + 1;
   memcpy (newpath, path, len);
-  strfcpy (newpath + len, link, _POSIX_PATH_MAX - len);
+  m_strcpy(newpath + len, _POSIX_PATH_MAX - len, link);
 }
 
 
@@ -547,14 +539,14 @@ static int dotlock_deference_symlink (char *d, size_t l, const char *path)
 
       linkfile[len] = '\0';
       dotlock_expand_link (linkpath, pathptr, linkfile);
-      strfcpy (realpath, linkpath, sizeof (realpath));
+      m_strcpy(realpath, sizeof(realpath), linkpath);
       pathptr = realpath;
     }
     else
       break;
   }
 
-  strfcpy (d, pathptr, l);
+  m_strcpy(d, l, pathptr);
   return 0;
 }