git.annexia.org
/
libguestfs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
688bdc1
)
daemon/Win32: NAME_MAX does not exist on Windows, use FILENAME_MAX instead.
author
Richard Jones
<rjones@redhat.com>
Fri, 20 Nov 2009 10:36:59 +0000
(10:36 +0000)
committer
Richard Jones
<rjones@redhat.com>
Fri, 20 Nov 2009 10:36:59 +0000
(10:36 +0000)
daemon/realpath.c
patch
|
blob
|
history
diff --git
a/daemon/realpath.c
b/daemon/realpath.c
index
17e74ea
..
02a82d6
100644
(file)
--- a/
daemon/realpath.c
+++ b/
daemon/realpath.c
@@
-32,6
+32,11
@@
#include "daemon.h"
#include "actions.h"
+/* On Windows, NAME_MAX is not defined. */
+#ifndef NAME_MAX
+#define NAME_MAX FILENAME_MAX
+#endif
+
char *
do_realpath (const char *path)
{