search for: setim

Displaying 8 results from an estimated 8 matches for "setim".

Did you mean: seti
2011 Mar 23
1
Asterisk Queue ACD when the queues and agents has the same priority/weight
...(C1) waiting time is bigger compared to caller (C2) of queue (F2). How should be the ACD behavior between queues in this case? How the asterisk distributes incoming calls when the queues and agents are the same weight/penalty? Thanks, ------------------------------------------------- Marcos Jos? Setim
2001 Feb 19
0
[PATCH]: Broken scp -p option
...============= RCS file: /cvs/openssh_cvs/scp.c,v retrieving revision 1.56 diff -u -p -r1.56 scp.c --- scp.c 2001/02/18 03:55:16 1.56 +++ scp.c 2001/02/19 09:31:27 @@ -802,16 +802,16 @@ sink(argc, argv) } vect[0] = xstrdup(np); sink(1, vect); - if (vect[0]) - xfree(vect[0]); if (setimes) { setimes = 0; - if (utimes(np, tv) < 0) + if (utimes(vect[0], tv) < 0) run_err("%s: set times: %s", - np, strerror(errno)); + vect[0], strerror(errno)); } if (mod_flag) - (void) chmod(np, mode); + (void) chmod(vect[0], mode); + if (vect...
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?
2000 Aug 18
0
[PATCH] Support symlinks in scp of openssh 2
...np) < 0) ? YES : NO; + wrerrno = errno; + goto done; + } if (count != 0 && wrerr == NO && (j = atomicio(write, ofd, bp, count)) != count) { @@ -917,5 +954,4 @@ bad: run_err("%s: %s", np, strerror(er wrerrno = errno; } - (void) response(); if (setimes && wrerr == NO) { setimes = 0; @@ -926,4 +962,5 @@ bad: run_err("%s: %s", np, strerror(er } } +done: (void) response(); switch (wrerr) { case YES: -- Chip Salzenberg - a.k.a. - <chip at valinux.com> "I wanted to play hop...
2001 May 12
4
Erase the source file open; specify a tempfile name option
...error(haderr)); - (void) response(); + if (response() == 0 && eraseflag && !haderr) { + if (unlink(name) < 0) + run_err("%s: %s", name, strerror(errno)); + } } } @@ -656,7 +679,7 @@ int amt, count, exists, first, mask, mode, ofd, omode; off_t size; int setimes, targisdir, wrerrno = 0; - char ch, *cp, *np, *targ, *why, *vect[1], buf[2048]; + char ch, *cp, *np, *targ, *dest, *why, *vect[1], buf[2048]; struct timeval tv[2]; #define atime tv[0] @@ -770,6 +793,7 @@ np = namebuf; } else np = targ; + dest = *tmpfn? tmpfn : np; curfile = cp;...
2003 Apr 21
0
Fix for rcp -r
...nly running 4.x. I think they monitor this list so I'll let them speak up if they choose to. >--- rcp.c~ Sun Feb 16 05:11:07 2003 >+++ rcp.c Sun Feb 16 05:13:52 2003 >@@ -589,7 +591,7 @@ > off_t i, j, size; > int amt, count, exists, first, mask, mode, ofd, omode; > int setimes, targisdir, wrerrno = 0; >- char ch, *cp, *np, *targ, *why, *vect[1], buf[BUFSIZ]; >+ char ch, *cp, *np, *targ, *why, *vect[1], buf[BUFSIZ], path[PATH_MAX]; > > #define atime tv[0] > #define mtime tv[1] >@@ -686,21 +688,15 @@ > if (*cp++ != ' ') > SCREWUP(...
2005 Oct 11
4
synchronise time
Hi, in my logon.bat file i put : net time \\admin /SET /YES to synchronise computer time with the server. This works when the user who is login in has administrator rights on the computer. How can i do with users who are just "member of the domain"? Is there a way to run this command "as administrator" ? Thanks for any help
2002 Jul 13
0
[PATCH]: scp program improved
...rr) (void) atomicio(write, remout, bp->buf, amt); else { @@ -579,8 +679,10 @@ if (result != amt) haderr = result >= 0 ? EIO : errno; statbytes += result; + bcounter += result; } } + if (showprogress) progressmeter(1); @@ -666,7 +768,8 @@ int setimes, targisdir, wrerrno = 0; char ch, *cp, *np, *targ, *why, *vect[1], buf[2048]; struct timeval tv[2]; - + int resume = 0; + #define atime tv[0] #define mtime tv[1] #define SCREWUP(str) do { why = str; goto screwup; } while (0) @@ -734,7 +837,7 @@ (void) atomicio(write, remout, &qu...