Displaying 6 results from an estimated 6 matches for "link_re".
Did you mean:
link_r
2011 Apr 27
2
2.0.12 Coredump under Solaris 10
hi,
Am Mittwoch, den 27.04.2011, 12:37 +0300 schrieb Timo Sirainen:
> Give "bt full" command here and show the output.
lot of lines :-)
============================
(gdb) bt full
#0 0xfeb559f8 in strcmp () from /lib/libc.so.1
No symbol table info available.
#1 0xfee73e7a in settings_find_key_nth (ctx=0x809bec0, key=0x807ab38
"plugin//imap", n=0x80477f0,
2011 Mar 25
2
Regression in settings-parser.c (dovecot 2.0.11)
Hi,
one Fedora user sees regression in dovecot 2.0.11 (compared to prev. 2.0.9). There was change recently:
http://hg.dovecot.org/dovecot-2.0/diff/bc77e80947c0/src/lib-settings/settings-parser.c
which adds call to settings_find_key_nth(...., &parent_def,...). This function can set parent_def to NULL, but
there is no check for this situation in the code. So on next line if (parent_def->type
2006 Oct 18
0
Versions and gem ?
Hi all,
I am using the Textile part of RedCloth for the Manta version of
LogiLogi.org, an OS project of mine. Now I was looking at changing
the LINK_RE so it allows links without spaces inbetween them like
("te":index.html;"xt":index.txt). Now that''s pretty easy, but still
risky because a change in the bracket-order of the LINK_RE in a
newer version would wreck it, so I looked at the svn code to see if
it''s...
2011 Apr 27
2
2.0.12 Coredump under Solaris 10
hi,
I've installed a testversion from 2.0.12 and getting coredumps after
login via IMAP/POP3. I don't know, if it is a simple config error or
something else.
======
dovecot: [ID 583609 local7.error] master: Error: service(imap): child
29333 killed with signal 11 (core dumped)
[ID 583609 local7.error] master: Error: service(imap): child 29335
killed with signal 11 (core dumped)
======
2011 Jun 28
0
[PATCH] cpio: cleanup O_BINARY usage.
...--- a/usr/utils/cpio.c
+++ b/usr/utils/cpio.c
@@ -31,10 +31,6 @@
#include <fnmatch.h>
#endif
-#ifndef O_BINARY
-# define O_BINARY 0
-#endif
-
# ifndef DIRECTORY_SEPARATOR
# define DIRECTORY_SEPARATOR '/'
# endif
@@ -576,8 +572,7 @@ static void create_final_defers(void)
if (link_res == 0) {
continue;
}
- out_file_des = open(d->header.c_name,
- O_CREAT | O_WRONLY | O_BINARY, 0600);
+ out_file_des = open(d->header.c_name, O_CREAT | O_WRONLY, 0600);
if (out_file_des < 0) {
fprintf(stderr, "%s: open %s: %s\n",
progname, d->header....
2007 Aug 24
2
[git patch] klibc bzero, mount fixes + random stuff
..._inode_file(unsigned long node_num, unsigned long major_num,
numbers is found, try and create another link to it using
link_to_name, and return 0 for success and -1 for failure. */
-int
+static int
link_to_maj_min_ino(char *file_name, int st_dev_maj, int st_dev_min, int st_ino)
{
int link_res;
@@ -457,7 +444,7 @@ link_to_maj_min_ino(char *file_name, int st_dev_maj, int st_dev_min, int st_ino)
static void copyin_regular_file(struct new_cpio_header *file_hdr,
int in_file_des);
-void warn_junk_bytes(long bytes_skipped)
+static void warn_junk_bytes(long bytes_skipped)
{
fprintf(...