Displaying 2 results from an estimated 2 matches for "comp_len".
Did you mean:
comm_len
2014 Sep 27
2
[PATCH 1/2] Implement realpath()
...,147 @@
+#include <errno.h>
+#include <limits.h>
+#include <stdlib.h>
+#include <sys/stat.h>
+#include <unistd.h>
+
+static char *__realpath(const char *name, char *resolved_name, int recurse)
+{
+ char link_target[PATH_MAX];
+ struct stat st;
+ char *p, *end;
+ size_t comp_len;
+ int link_len;
+ int exists = 1;
+ int is_dir = 1;
+
+ /* Keep or ignore base dir depending on whether name is relative */
+ p = resolved_name;
+ if (*name != '/')
+ p += strlen(p);
+
+ /* Find end of buffer */
+ end = resolved_name + PATH_MAX;
+
+ /* Iterate over name components */
+ wh...
2007 Oct 03
1
Namespace "hidden" option not working?
...ovecot.conf
# default namespace
namespace private {
separator = /
prefix =
inbox = yes
hidden = yes
}
# for backwards compatibility:
namespace private {
separator = .
prefix = INBOX.
inbox = yes
}
Then login and test
s6jh LIST "" "*"
SND: <<< len(939) Comp_len(118) Time:0.137985
* LIST (\HasNoChildren) "/" "Diary"
* LIST (\HasNoChildren) "/" "Spam"
* LIST (\HasNoChildren) "/" "Sent"
* LIST (\HasNoChildren) "/" "Archive"
* LIST (\HasNoChildren) "/" "Sent Items&q...