server: Return correct object types in the get_directory_entry request.
diff --git a/server/symlink.c b/server/symlink.c
index 183497c..9769c83 100644
--- a/server/symlink.c
+++ b/server/symlink.c
@@ -46,6 +46,7 @@
};
static void symlink_dump( struct object *obj, int verbose );
+static struct object_type *symlink_get_type( struct object *obj );
static unsigned int symlink_map_access( struct object *obj, unsigned int access );
static struct object *symlink_lookup_name( struct object *obj, struct unicode_str *name,
unsigned int attr );
@@ -55,6 +56,7 @@
{
sizeof(struct symlink), /* size */
symlink_dump, /* dump */
+ symlink_get_type, /* get_type */
no_add_queue, /* add_queue */
NULL, /* remove_queue */
NULL, /* signaled */
@@ -82,6 +84,13 @@
fprintf( stderr, "\"\n" );
}
+static struct object_type *symlink_get_type( struct object *obj )
+{
+ static const WCHAR name[] = {'S','y','m','b','o','l','i','c','L','i','n','k'};
+ static const struct unicode_str str = { name, sizeof(name) };
+ return get_object_type( &str );
+}
+
static struct object *symlink_lookup_name( struct object *obj, struct unicode_str *name,
unsigned int attr )
{