1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-17 03:25:46 +00:00
freebsd-ports/cad/ldraw/files/patch-mklist__mklist.c
Rusmir Dusko 55c51d42ec - Add USE_DOS2UNIX
- Use mklist1_6 instead of mklist1_4
- Support STAGEDIR
- Add patch, fix typo

Approved by:	pawel / wg (mentors, implicit)
2013-11-18 21:55:54 +00:00

23 lines
685 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--- ./mklist/mklist.c.orig 2013-11-15 20:23:32.000000000 +0100
+++ ./mklist/mklist.c 2013-11-15 20:25:12.000000000 +0100
@@ -53,8 +53,8 @@
/*****************************************************************/
/* 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 +84,7 @@
int GetShortPathName(char *longpath, char * shortpath, int psize)
{
strncpy(shortpath, longpath, psize);
- return(strlen(shortpath);
+ return(strlen(shortpath));
}
#endif