summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schauer <j.schauer@email.de>2023-05-18 22:29:13 +0200
committerJohannes Schauer Marin Rodrigues <josch@debian.org>2023-05-18 22:29:13 +0200
commitddc339daa99d3501493175338ff96c61baa7519b (patch)
treee0edf84a53c325c2b49eb8f038e4df05ae330d06
parentd793ee63338237c2a7a80fbae477b711d90b2628 (diff)
fix mklist typos
Forwarded: no Last-Updated: 2021-10-02 The original mklist.c doesnt compile because of syntax errors and variable naming errors. Last-Updated: 2021-10-02 Gbp-Pq: Name 1000-fix-mklist-typos.diff
-rw-r--r--mklist.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/mklist.c b/mklist.c
index 7ee531a8a..09531c64c 100644
--- a/mklist.c
+++ b/mklist.c
@@ -44,6 +44,7 @@
#include "alloc.h"
#include "dir.h"
#include "conio.h"
+#include <libgen.h>
char *ProgVer = "mklist v1.6 20100706 (C) 1999-2010 Lars C. Hassing lch@ccieurope.com";
@@ -53,8 +54,8 @@ int quiet = 0;
/*****************************************************************/
/* Filename length compatibility stuff */
/*****************************************************************/
-#ifndef _MAX_PATH
-#define _MAX_PATH 256
+#ifndef MAX_PATH
+#define MAX_PATH 256
#endif
char shortfilepath[MAX_PATH];
char shortfilename[MAX_PATH];
@@ -84,7 +85,7 @@ int namelen = 25; /* LSC specs allow 25 chars in filename. */
int GetShortPathName(char *longpath, char * shortpath, int psize)
{
strncpy(shortpath, longpath, psize);
- return(strlen(shortpath);
+ return(strlen(shortpath));
}
#endif