search for: stb

Displaying 20 results from an estimated 74 matches for "stb".

Did you mean: skb
2012 Nov 29
1
worldmap_region/country problem
...dual countries in one worldmap? Is it possible to not display borderlines between some countries but to show the borders between others? Thank you very much for your help! Anna Fechner PricewaterhouseCoopers Aktiengesellschaft Wirtschaftsprüfungsgesellschaft Vorsitzender des Aufsichtsrates WP StB Dr. Norbert Vogelpoth Vorstandsmitglieder WP StB Prof. Dr. Norbert Winkeljohann · WP StB Dr. Peter Bartels WP StB CPA Markus Burghardt · StB Prof. Dr. Dieter Endres · WP StB Prof. Dr. Georg Kämpfer WP StB Harald Kayser · WP RA StB Dr. Jan Konerding · WP StB Andreas Menke StB Marius Möller · WP St...
2012 Sep 21
2
Inclusion of a countdown tool of remaining calculation time possible?
...any progress or whether anything has crashed and to get a feeling whether we have to wait for 5 min or 30min... Any help is greatly appreciated! Thanks in advance. Best, Jennifer PricewaterhouseCoopers Aktiengesellschaft Wirtschaftsprüfungsgesellschaft Vorsitzender des Aufsichtsrates WP StB Dr. Norbert Vogelpoth Vorstandsmitglieder WP StB Prof. Dr. Norbert Winkeljohann · WP StB Dr. Peter Bartels WP StB CPA Markus Burghardt · StB Prof. Dr. Dieter Endres · WP StB Prof. Dr. Georg Kämpfer WP StB Harald Kayser · WP RA StB Dr. Jan Konerding · WP StB Andreas Menke StB Marius Möller · WP St...
2000 Aug 18
0
[PATCH] Support symlinks in scp of openssh 2
...+ pflag = 1; + iamrecursive = 1; + break; + case 'L': + linkflag = 1; + break; case 'p': pflag = 1; @@ -549,12 +557,24 @@ source(argc, argv) name = argv[indx]; statbytes = 0; - if ((fd = open(name, O_RDONLY, 0)) < 0) - goto syserr; - if (fstat(fd, &stb) < 0) { + if (linkflag) { + fd = -1; + result = lstat(name, &stb); + } + else { + if ((fd = open(name, O_RDONLY, 0)) < 0) + goto syserr; + result = fstat(fd, &stb); + } + if (result < 0) { syserr: run_err("%s: %s", name, strerror(errno)); goto next;...
2012 Oct 11
2
Options to extend memory limit
...ease tell me whether these do make sense for my case and if so how (and at what stage of the process) I can use them? Thank you very, very much in advance. Kind regards, Jennifer PricewaterhouseCoopers Aktiengesellschaft Wirtschaftsprüfungsgesellschaft Vorsitzender des Aufsichtsrates WP StB Dr. Norbert Vogelpoth Vorstandsmitglieder WP StB Prof. Dr. Norbert Winkeljohann · WP StB Dr. Peter Bartels WP StB CPA Markus Burghardt · StB Prof. Dr. Dieter Endres · WP StB Prof. Dr. Georg Kämpfer WP StB Harald Kayser · WP RA StB Dr. Jan Konerding · WP StB Andreas Menke StB Marius Möller · WP St...
2008 Oct 20
1
Two questions
...getting lots of "couldn't find service" errors. I had: [data] path = /data read only = no public = yes browseable = yes writeable = yes force user = nfsnobody force group = nfsnobody guest ok = yes The netbios name is stb-data, and it was complaining about "couldn't find service stb-data". I changed the stanza to: [stb-data] path = /data comment = STB Group file server read only = no public = yes browseable = yes writeable = yes force user = nfs...
2002 Dec 03
1
scp "Bad address" errors with strange filesystem block sizes
...ision 1.1.1.9 diff -u -r1.1.1.9 scp.c --- scp.c 27 Jun 2002 22:31:12 -0000 1.1.1.9 +++ scp.c 3 Dec 2002 01:54:49 -0000 @@ -1030,6 +1030,9 @@ { size_t size; #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE +#ifndef roundup +#define roundup(x, y) ((((x)+((y)-1))/(y))*(y)) /* to any y */ +#endif struct stat stb; if (fstat(fd, &stb) < 0) { @@ -1039,8 +1042,7 @@ if (stb.st_blksize == 0) size = blksize; else - size = blksize + (stb.st_blksize - blksize % stb.st_blksize) % - stb.st_blksize; + size = roundup(stb.st_blksize, blksize); #else /* HAVE_STRUCT_STAT_ST_BLKSIZE */ size = bl...
2010 Nov 19
3
File Offsets for SCP (patch)
...|| *endp != '\0') + usage(); + break; default: usage(); } @@ -680,6 +694,16 @@ syserr: run_err("%s: %s", name, strerr run_err("%s: %s", name, "Negative file size"); goto next; } + if (fd_offset > stb.st_size) { + run_err("Offset greater than file size"); + goto next; + } + if (fd_inset > stb.st_size) { + run_err("Inset greater than file size"); + goto next; + } + lseek (fd, fd_offset, SEEK_SET); + stb.st_size -= (fd_offset + fd_inset); unset_nonblock(fd);...
2002 Jul 13
0
[PATCH]: scp program improved
...targetshouldbedirectory ? " -d" : "", + resume_mode ? " -a" : "", rate_limit); + if (!rate_limit) + *(strstr(cmd, " -R")) = '\0'; (void) signal(SIGPIPE, lostconn); @@ -482,14 +523,18 @@ char *argv[]; { struct stat stb; + struct timeval wait, lastupdate, now; static BUF buffer; BUF *bp; - off_t i, amt, result; + off_t i, amt, result, bcounter; int fd, haderr, indx; - char *last, *name, buf[2048]; + char *last, *name, buf[2048], c; int len; + /* For rate limit */ + int buf_size, cur_mo...
2012 Dec 27
1
[patch] patch for fskip_ahead()
...quot;FLAC/all.h" #include "share/alloc.h" #include "share/grabbag.h" @@ -2799,29 +2800,18 @@ FLAC__bool read_sane_extended(FILE *f, FLAC__uint32 *val, const char *fn) FLAC__bool fskip_ahead(FILE *f, FLAC__uint64 offset) { static unsigned char dump[8192]; + struct stat stb; -#ifdef _MSC_VER - if(f == stdin) { - /* MS' stdio impl can't even seek forward on stdin, have to use pure non-fseek() version: */ - while(offset > 0) { - const long need = (long)min(offset, sizeof(dump)); - if((long)fread(dump, 1, need, f) < need) - return false; - offs...
2001 Apr 20
2
scp with files > 2gb
...9;ve tried this under Solaris and scp fails with a broken pipe on only the second write to the pipe between scp and ssh if the file is over 2gb. If the file is under 2gb it works fine. it fails the second time around the for loop that looks like this in scp.c:source() for (haderr = i = 0; i < stb.st_size; i += bp->cnt) { amt = bp->cnt; if (i + amt > stb.st_size) amt = stb.st_size - i; if (!haderr) { SIGPIPE =====>>> result = atomicio(read, fd, bp->buf, amt); .... } scp from: OpenSSH 2.5.1p2 client and server both Solaris. Any comments ? -- Darren J Mo...
2006 Dec 18
1
zfs/fstyp slows down recognizing pcfs formatted floppies
...es.h> +#include <sys/stat.h> +#include <sys/fs/zfs.h> #include <unistd.h> #include <libintl.h> #include <locale.h> @@ -88,6 +90,15 @@ fstyp_mod_ident(fstyp_mod_handle_t handl char *str; uint64_t u64; char buf[64]; + struct stat stb; + + /* + * don''t probe for zfs on small media (e.g. floppy) that is + * too small for a zpool. + */ + if (fstat(h->fd, &stb) == 0 && stb.st_size < SPA_MINDEVSIZE) { + return (FSTYP_ERR_NO_MATCH); + } if (zpool...
2001 Aug 29
1
bug in scp (OpenSSH)
Hi, using both OpenSSH_2.5.1p1 (compiled myself) and openssh-2.9p1-23.i386.rpm from ftp.suse.com 7.2_update I get the following "leak" : using `scp' I tried to copy a file from a local floppy disk to a remote system, but the disk had an read error and scp didn't get any real data from floppy: turtle koenig > scp /media/floppy/file.c harald:file.c
2007 Apr 18
2
[Bridge] Help: Bridge and NAT through same NIC?
...home network based a single WAN-facing NIC, eth0, that gets a public IP address from DHCP and two internal NICs: - eth1: that provides simple NAT for several PCs - eth2: a cable set-top-box that needs an IP address from a specific, and separate, DHCP server (that checks MAC addresses so that only STBs can connect to it). The diagram summarises: Internet --- DHCP server ------ eth0 ------- eth1 ---- Home network (public IP) | | | | TV-content --DHCP (server) --- -- eth2 ---- TV set-top box (Private I...
2011 Jun 23
0
[LLVMdev] Instr Description Problem of MCore Backend
Hello > Finally, I don't know how to describe following instructions in > MCoreInstrInfo.td, because of its variable ins/outs. Or what other files > should I use to finish this description? Do you need the isel support for them? If yes, then you should custom isel them. iirc ARM and SystemZ backends have similar instructions, while only the first one supports full isel for them. In
2006 Mar 17
3
[Bug 1173] scp reports lost connection for very large files
...'scp -v' it is reported (see line below) as merely 1.8G or so (1845525336). Sending file modes: C0644 1845525336 onedrain_opsncc_pg_dump.out Further investigation points to scp.c line 607 snprintf(buf, sizeof buf, "C%04o %lld %s\n", (u_int) (stb.st_mode & FILEMODEMASK), (long long)stb.st_size, last); if (verbose_mode) { fprintf(stderr, "Sending file modes: %s", buf); } Value in stb.st_size is correct (10435459928), however after snprintf() variable b...
2017 Feb 01
2
Status of AAP (Embecosm's demonstration architecture)?
...y the AAP authors follow this list) - the architecture presentation ( http://www.embecosm.com/appnotes/ean13/ean13.pdf ) shows in fig 2.1 multiple 16-bit-address data memory stores, seemingly with overlapping address ranges (0000-FFFF). How is a data store selected, e.g. for use with subsequent LDB/STB? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170201/f970fe97/attachment.html>
1997 Apr 29
9
Yet Another DIP Exploit?
I seem to have stumbled across another vulnerability in DIP. It appears to allow any user to gain control of arbitrary devices in /dev. For instance, I have successfully stolen keystrokes from a root login as follows... (I could also dump characters to the root console) $ whoami cesaro $ cat < /dev/tty1 <------ root login here bash: /dev/tty1: Permission denied
2007 May 17
2
[Bug 828] date overflow with scp -p
http://bugzilla.mindrot.org/show_bug.cgi?id=828 Damien Miller <djm at mindrot.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #588| |ok+ Flag| | --- Comment #2 from Damien Miller <djm at mindrot.org>
2010 Jun 17
4
[PATCH] Improve support for exporting btrfs subvolumes.
...4 --- a/utils/mountd/cache.c +++ b/utils/mountd/cache.c @@ -170,13 +170,16 @@ void auth_unix_gid(FILE *f) #if USE_BLKID static const char *get_uuid_blkdev(char *path) { + /* We set *safe if we know that we need the + * fsid from statfs too. + */ static blkid_cache cache = NULL; struct stat stb; char *devname; blkid_tag_iterate iter; blkid_dev dev; const char *type; - const char *val = NULL; + const char *val, *uuid = NULL; if (cache == NULL) blkid_get_cache(&cache, NULL); @@ -193,42 +196,29 @@ static const char *get_uuid_blkdev(char *path) iter = blkid_tag_iterate_be...
2019 Jan 19
2
Status of SCP vulnerability
Hello, I would like to request an update of the progress regarding fixes for the recently disclosed SCP vulnerability (CVE-2018-20685, CVE-2019-6111, CVE-2019-6109, CVE-2019-6110) It has been stated that CVE-2018-20685 has been patched in november but there are currently no information available on the progress of patches regarding the other CVEs. Will there be a patched release any time soon?