Displaying 14 results from an estimated 14 matches for "uflag".
Did you mean:
flag
2004 May 03
4
ctags(1) command execution vulnerability
Hello,
ctags(1) uses external application sort(1) for sorting the tags file.
It calls it via system(3) function.
Look at the /usr/src/usr.bin/ctags/ctags.c file, there are such lines
here:
if (uflag) {
(void)asprintf(&cmd, "sort -o %s %s",
outfile, outfile);
if (cmd == NULL)
err(1, "out of space");
system(cmd);
free(cmd);
cmd = NULL;
}
This code will be executed when "-u" arg was given. So, if we'll execute
ctags in a such way:
ctags -u -f &...
2007 Jan 30
1
Solaris 10 compilation issue
...ot;/usr/local/teTeX/bin/i386-pc-solaris2.10/pdftex"
PDFLATEX="/usr/local/teTeX/bin/i386-pc-solaris2.10/pdflatex"
DVIPS="/usr/local/teTeX/bin/i386-pc-solaris2.10/dvips"
MAKEINFO="/usr/local/teTeX/bin/i386-pc-solaris2.10/makeinfo"
UCOMPILER="-xarch=amd64"
UFLAGS="-xO5 -xlibmil"
CC="/opt/SUNWspro/bin/cc $UCOMPILER"
CFLAGS="$UFLAGS -xc99=%all -xlibmieee"
F77="/opt/SUNWspro/bin/f95 $UCOMPILER"
FFLAGS="$UFLAGS -fsimple=0"
CXX="/opt/SUNWspro/bin/CC $UCOMPILER"
CXXFLAGS="$UFLAGS -xlibmieee"...
2007 Jan 30
1
Difficulty with compiling R-2.4.1 on solaris 10
...ot;/usr/local/teTeX/bin/i386-pc-solaris2.10/pdftex"
PDFLATEX="/usr/local/teTeX/bin/i386-pc-solaris2.10/pdflatex"
DVIPS="/usr/local/teTeX/bin/i386-pc-solaris2.10/dvips"
MAKEINFO="/usr/local/teTeX/bin/i386-pc-solaris2.10/makeinfo"
UCOMPILER="-xarch=amd64"
UFLAGS="-xO5 -xlibmil"
CC="/opt/SUNWspro/bin/cc $UCOMPILER"
CFLAGS="$UFLAGS -xc99=%all -xlibmieee"
F77="/opt/SUNWspro/bin/f95 $UCOMPILER"
FFLAGS="$UFLAGS -fsimple=0"
CXX="/opt/SUNWspro/bin/CC $UCOMPILER"
CXXFLAGS="$UFLAGS -xlibmieee"...
2007 Jan 30
0
R Compiling issue
...usr/local/teTeX/bin/i386-pc-solaris2.10/pdftex"
PDFLATEX="/usr/local/teTeX/bin/i386-pc-solaris2.10/pdflatex"
DVIPS="/usr/local/teTeX/bin/i386-pc-solaris2.10/dvips"
MAKEINFO="/usr/local/teTeX/bin/i386-pc-solaris2.10/makeinfo"
UCOMPILER="-xarch=amd64"
UFLAGS="-xO5 -xlibmil"
CC="/opt/SUNWspro/bin/cc $UCOMPILER"
CFLAGS="$UFLAGS -xc99=%all -xlibmieee"
F77="/opt/SUNWspro/bin/f95 $UCOMPILER"
FFLAGS="$UFLAGS -fsimple=0"
CXX="/opt/SUNWspro/bin/CC $UCOMPILER"
CXXFLAGS="$UFLAGS -xlibmieee&q...
2007 Jan 30
0
Issue with compiling R on solaris 10
...ot;/usr/local/teTeX/bin/i386-pc-solaris2.10/pdftex"
PDFLATEX="/usr/local/teTeX/bin/i386-pc-solaris2.10/pdflatex"
DVIPS="/usr/local/teTeX/bin/i386-pc-solaris2.10/dvips"
MAKEINFO="/usr/local/teTeX/bin/i386-pc-solaris2.10/makeinfo"
UCOMPILER="-xarch=amd64"
UFLAGS="-xO5 -xlibmil"
CC="/opt/SUNWspro/bin/cc $UCOMPILER"
CFLAGS="$UFLAGS -xc99=%all -xlibmieee"
F77="/opt/SUNWspro/bin/f95 $UCOMPILER"
FFLAGS="$UFLAGS -fsimple=0"
CXX="/opt/SUNWspro/bin/CC $UCOMPILER"
CXXFLAGS="$UFLAGS -xlibmieee"...
2020 Mar 28
0
[klibc:update-dash] dash: expand: Fix multiple issues with EXP_DISCARD in evalvar
...QUOTES_ESC);
+ (flag & ~QUOTES_ESC) |
+ (discard ^ EXP_DISCARD));
- if (flag & EXP_DISCARD)
- return p;
+ if ((flag | ~discard) & EXP_DISCARD)
+ goto record;
varflags &= ~VSNUL;
+ subtype = VSNORMAL;
goto again;
}
- if (varlen < 0 && uflag)
+ if ((discard & ~flag) && uflag)
varunset(p, var, 0, 0);
if (subtype == VSLENGTH) {
if (flag & EXP_DISCARD)
return p;
cvtnum(varlen > 0 ? varlen : 0, flag);
- goto record;
+ goto really_record;
}
if (subtype == VSNORMAL)
@@ -765,7 +766,7 @@ again:
}...
2019 Jan 25
0
[klibc:update-dash] [EXPAND] Do not split quoted VSLENGTH and VSTRIM
...record;
- goto end;
+
+ subevalvar(p, var, 0, subtype, startloc, varflags,
+ flag & ~QUOTES_ESC);
+ varflags &= ~VSNUL;
+ /*
+ * Remove any recorded regions beyond
+ * start of variable
+ */
+ removerecordregions(startloc);
+ goto again;
}
if (varlen < 0 && uflag)
@@ -786,9 +780,9 @@ vsplus:
}
if (subtype == VSNORMAL) {
+record:
if (!easy)
goto end;
-record:
recordregion(startloc, expdest - (char *)stackblock(), nulonly);
goto end;
}
2020 Mar 28
0
[klibc:update-dash] dash: [EXPAND] Do not split quoted VSLENGTH and VSTRIM
...record;
- goto end;
+
+ subevalvar(p, var, 0, subtype, startloc, varflags,
+ flag & ~QUOTES_ESC);
+ varflags &= ~VSNUL;
+ /*
+ * Remove any recorded regions beyond
+ * start of variable
+ */
+ removerecordregions(startloc);
+ goto again;
}
if (varlen < 0 && uflag)
@@ -786,9 +780,9 @@ vsplus:
}
if (subtype == VSNORMAL) {
+record:
if (!easy)
goto end;
-record:
recordregion(startloc, expdest - (char *)stackblock(), nulonly);
goto end;
}
2005 Jan 01
1
extlinux probs
...nul nul nul nul nul nul nul nul U *
after turning on DEBUG, via
[jimc at harpo extlinux]$ diff -u Makefile~ Makefile
--- Makefile~ 2004-12-22 00:17:53.000000000 -0700
+++ Makefile 2004-12-31 15:57:40.323057158 -0700
@@ -1,5 +1,5 @@
CC = gcc
-OPTFLAGS = -g -Os
+OPTFLAGS = -g -Os $(UFLAGS)
INCLUDES = -I. -I.. -I../libfat
CFLAGS = -W -Wall -Wno-sign-compare -D_FILE_OFFSET_BITS=64
$(OPTFLAGS) $(INCLUDES)
LDFLAGS = -s
it tells me this:
[root at harpo syslinux-3.00]# extlinux/extlinux /media/usbdisk/boot/extlinux/
/media/usbdisk/boot/extlinux/ is device /dev/sda1
cyl = 30...
2009 Jul 25
0
dovecot-1.2 with managesieve patch: imap crash with backtrace
...log_file_head_offset = 6334852, sync_size = 13806612332261933056,
sync_stamp = 155806360, day_stamp = 3214602280, day_first_uid = {135194511,
155806360, 155812344, 3214602456, 134786544, 3214602436, 0, 0}}
rec = <value optimized out>
seq = 1
seq2 = 2
uid = 216
prev_uid = 216
uflags = MAILDIR_UIDLIST_REC_FLAG_RECENT
filename = 0x94c96a0 "1248509847.M937495P31850.postamt.charite.de,S=3162,W=3225"
uid_validity = 1248509847
next_uid = <value optimized out>
hdr_next_uid = 217
first_recent_uid = 1
first_uid = 1
changes = 0
ret = 0
time_before_sync = 124850...
2009 Jun 20
1
imap signal 6 crash with backtrace (1.2rc5)
...,
log_file_head_offset = 12386328, sync_size = 13828297038023884800,
sync_stamp = 155303216, day_stamp = 3219651144, day_first_uid = {135197247,
155303216, 155306120, 3219651320, 134735536, 3219651300, 0, 0}}
rec = <value optimized out>
seq = 1
seq2 = 3
uid = 70
prev_uid = 70
uflags = MAILDIR_UIDLIST_REC_FLAG_RECENT
filename = 0x943a7f8 "1245502772.M197059P20490.postamt.charite.de,S=3934,W=4010"
uid_validity = 1245502772
next_uid = <value optimized out>
hdr_next_uid = 71
first_recent_uid = 1
first_uid = 1
changes = 0
ret = 0
time_before_sync = 1245502...
2015 Feb 24
4
Call for testing: OpenSSH 6.8
On Mon, 23 Feb 2015, Kevin Brott wrote:
>
> Yup - that cleared that hurdle ... now it dies here on AIX:
>
> xlc_r -O2 -qarch=ppc -qalloca -I/usr/include -I/opt/freeware/include
> -I. -I. -O2 -qarch=ppc -qalloca -I/usr/include -I/opt/freeware/include
> -DSSHDIR=\"/usr/local/etc\" -D_PATH_SSH_PROGRAM=\"/usr/local/bin/ssh\"
>
2010 Apr 03
1
dovecot 2 beta4 errors & core dumps
...ad_offset =
1, sync_size = 13256344077235912704, sync_stamp = 3085747040,
day_stamp = 134956776,
day_first_uid = {3221216328, 3085530784, 3085747040, 3085781192,
3086502160, 3085743644, 4294967295, 3086618612}}
rec = <value optimized out>
seq = 0
seq2 = 0
uid = 29
prev_uid = 29
uflags = 0
filename = 0x80aee58 "1270283027.M108835P27367.test-
mail,S=1837,W=1881:2,"
uid_validity = 1270283075
next_uid = <value optimized out>
hdr_next_uid = 30
first_recent_uid = 30
first_uid = 1
changes = 4
ret = 0
time_before_sync = 1270283027
expunged_guid_128 = "??...
2006 Nov 17
1
gjournal on 6.x wont build
Hi all,
I was intending on trying out gjournal on a new disk i've added in my
desktop. I had a look to see what the most recent patch provided by
Pawel and found
http://people.freebsd.org/~pjd/patches/gjournal6_20061024.patch
I created the directories as per Pawel's original post
(http://lists.freebsd.org/pipermail/freebsd-fs/2006-June/001962.html)
and the patch succeeded with no failed