search for: lastupd

Displaying 16 results from an estimated 16 matches for "lastupd".

Did you mean: lastuid
2002 Feb 06
2
SFTP Status Bar..
...; +} + +void +progressmeter(off_t statbytes, off_t totalbytes, char *filename) +{ +#define STALLTIME 5 /* number of seconds before xfer assumed "stalled" */ + static const char prefixes[] = " KMGTP"; + static char *progressbar = NULL; + static struct timeval *start = NULL, lastupdate; + static off_t lastsize; + static size_t progressbar_size = 0; + struct timeval now, td, wait; + off_t cursize, abbrevsize; + double elapsed; + int ratio, barlength, i, remaining; + char buf[256]; + + if (!start) { + start = xmalloc(sizeof(struct timeval)); + (void) gettimeofday(start, (struc...
2002 Jul 13
0
[PATCH]: scp program improved
..." : "", + 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_mod; + long int sleep_time; - for...
2002 Jan 30
1
Quick sftp status indicator.
...!= -1 && + ctty_pgrp == pgrp)); +} + +void +progressmeter(int flag, off_t statbytes, off_t totalbytes, char *curfile) +{ +#define STALLTIME 5 /* number of seconds before xfer assumed "stalled" */ + static const char prefixes[] = " KMGTP"; + static struct timeval lastupdate; + static off_t lastsize; + static u_char *progressbar = NULL; + static size_t progressbar_size = 0; + static struct timeval start; + struct timeval now, td, wait; + off_t cursize, abbrevsize; + double elapsed; + int ratio, barlength, i, remaining; + char buf[256]; + + if (flag == -1) { + (void...
2002 Feb 02
0
Version two of progressbar for scp/sftp
...+progressmeter(off_t statbytes, off_t totalbytes, char *filename) +{ +#define STALLTIME 5 /* number of seconds before xfer assumed "stalled" */ + static const char prefixes[] = " KMGTP"; + static char *progressbar = NULL, file = NULL; + static struct timeval *start = NULL, lastupdate; + static off_t lastsize; + static size_t progressbar_size = 0; + struct timeval now, td, wait; + off_t cursize, abbrevsize; + double elapsed; + int ratio, barlength, i, remaining; + char buf[256]; + + if (!start) { + start = xmalloc(sizeof(struct timeval)); + (void) gettimeofday(start, (struc...
2007 Sep 27
4
transportXML returns null?
...var response = transport.responseXML; // null ? //var response = transport.responseText; // OK alert("after response=" + response); if (response != null) { alert("b=" + response.getElementById(''lastUpdate'').innerHTML); // this never works } else alert("onSuccess, responseXML is null"); }, onFailure: function(){ alert("Cannot get data from server: " + location.host) } }); } --~--~...
2001 Feb 03
0
Winamp plugin annoyance
Hello, When the Winamp plugin is playing an Ogg Vorbis file, if you try to scroll the playlist so that the title of the Ogg file scrolls out of view, it jumps back again, which is very annoying. The fix: In function DecodeThread, replace if(lostsync || (decode_pos_ms - lastupdate > 500)) { ... mod.SetInfo(bitrate / 1000, samplerate / 1000, num_channels, 1); by if(lostsync || (decode_pos_ms - lastupdate > 500)) { ... mod.SetInfo(bitrate / 1000, -1, -1, -1); (-1 indicating "no change") Another annoyance, if an Ogg file does not have a title, it is...
2004 May 17
8
[Bug 869] Password expiration does not work for LDAP users
...yev at us.ibm.com There appears to be a problem with SSH on AIX 5.1 on systems running secldap client (secldapclntd): ssh ignores the maxage attribute specified for the SYSTEM=LDAP users in the ldap directory. Instead ssh is looking for the maxage attribute in the /etc/security/user and the 'lastupdate' in the /etc/security/passwd. If the default stanza in the /etc/security/user does not contain maxage the LDAP user never gets a prompt to change the expired password. If the default stanza does contain the maxage then the user always (even after changing the password successfully) gets pr...
2009 Nov 04
2
Certificates Revocation Lists and Apache...
...revoked) certificate, I get: [debug] ssl_engine_kernel.c(1199): Certificate Verification: depth: 2, subject: /C=AA/ST=BB/L=CC/O=DD/CN=myhost.mydomain, issuer: /C=AA/ST=BB/L=CC/O=DD/CN=myhost.mydomain [debug] ssl_engine_kernel.c(1391): CA CRL: Issuer: C=AA, ST=BB, L=CC, O=DD, CN=myhost.mydomain, lastUpdate: Nov 4 14:39:36 2009 GMT, nextUpdate: Nov 4 14:39:36 2010 GMT [warn] Invalid signature on CRL [error] Certificate Verification: Error (8): CRL signature failure [debug] ssl_engine_kernel.c(1779): OpenSSL: Write: SSLv3 read client certificate B [debug] ssl_engine_kernel.c(1798): OpenSSL...
2018 Jan 10
0
Release of wbstats 0.2 on CRAN
...on 0.2 now * Uses version 2 of the World Bank API. This includes data that is unavailable in the previous world bank API * Has the ability to return data in a "wide" format (indicators are columns) with the return_wide = TRUE option * More explicit error messaging * Has a lastUpdated field for each data source CRAN: https://CRAN.R-project.org/package=wbstats Github: https://github.com/GIST-ORNL/wbstats A getting started with wbstats article, including examples with sf, ggplot2, and leaflet https://jesse.netlify.com/2018/01/05/getting-started-with-wbstats-a-world-bank-r-p...
2004 Apr 29
1
OpenSSH authentication on AIX box that using NIS
...er such details on AIX. At the moment it appears to be just blindly checking /etc/security/passwd for the user (regardless of whether they're NIS or Local users) and will quitely fail if the user is not there. I validated this was the case by adding a nis user's details with a recent 'lastupdate' value for the password and verified that the user was able to login successfully. Is there anyone can advise a workaround on this? Thanks _________________________________________________________ ??????????... ???? ???? http://us.rd.yahoo.com/evt=22281/*http://ringtone.yahoo.com.hk/
2018 Jan 10
0
Release of wbstats 0.2 on CRAN
...on 0.2 now * Uses version 2 of the World Bank API. This includes data that is unavailable in the previous world bank API * Has the ability to return data in a "wide" format (indicators are columns) with the return_wide = TRUE option * More explicit error messaging * Has a lastUpdated field for each data source CRAN: https://CRAN.R-project.org/package=wbstats Github: https://github.com/GIST-ORNL/wbstats A getting started with wbstats article, including examples with sf, ggplot2, and leaflet https://jesse.netlify.com/2018/01/05/getting-started-with-wbstats-a-world-bank-r-p...
2008 Aug 12
1
Problem with using read.csv with web address
...Count Households Apr01 312 4043 99982 811398 7 Count Households Apr01 21 336 38381 135202 8 Count Households Apr01 291 3707 61601 676196 9 LastUpdated 18 November 2004 10 Source Office for National Statistics 11 National Statistics 12 However, I get 107 lines of text. Here is a bit of it: 1 <!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN http://www.w3.org/TR/html4/strict.dtd><html<http://www.w3.org/T...
2003 Jun 25
2
openssh-3.6.1p2-passexpire20.patch prevents /etc/nologin display on AIX
Hi there, I have just compiled up 3.6.1p2 both with and without Darren Tuckers passexpire patch. However, with the patch applied /etc/nologin isn't displayed to users (on AIX 5.1 / PSSP) The patched vesion seems to fail with "illegal user" - some parts of a debug 3 log... debug1: userauth-request for user ade45 service ssh-connection method none debug1: attempt 0 failures 0
1999 Dec 14
2
1.2pre17 scp Input/Output error
Under OpenSSH 1.2pre17 I can duplicate and Input/Output error for scp: Conditions: pc36 is a RH6.0/i386 box. abc.co.za is a RH5.2/i386 box. (private network) openssh 1.2 pre 17 on both boxes. Line between them is a 128k leased line. It works between two 10baseT machines. If the scrollbar is active, the scp fails, if it isn't active, scp works. Note that without the scrollbar, the file gets
2003 Jul 09
0
[PATCH] Add expired password handling for AIX.
...hese login attempts here. + */ + upw = getuserpw(user); + result = getuserattr(user, S_MAXEXPIRED, &maxexpired, SEC_INT); + result2 = getuserattr(user, S_MAXAGE, &maxage, SEC_INT); + if (upw != NULL && result == 0 && result2 == 0) { + time_t now, lastup = upw->upw_lastupdate; + + now = time(NULL); + debug3("%s lastupdate %lu maxage %d wks maxexpired %d" + "wks time now %d", __func__, lastup, maxage, + maxexpired, now); + + if (maxexpired != -1 && maxage != 0 && + lastup + ((maxage + maxexpired) * WEEK) <...
2003 Jul 30
1
[PATCH] Password expiry merge (AIX parts)
...hese login attempts here. + */ + upw = getuserpw(user); + result = getuserattr(user, S_MAXEXPIRED, &maxexpired, SEC_INT); + result2 = getuserattr(user, S_MAXAGE, &maxage, SEC_INT); + if (upw != NULL && result == 0 && result2 == 0) { + time_t now, lastup = upw->upw_lastupdate; + + now = time(NULL); + debug3("%s lastupdate %lu maxage %d wks maxexpired %d" + "wks time now %d", __func__, lastup, maxage, + maxexpired, now); + + if (maxexpired != -1 && maxage != 0 && + lastup + ((maxage + maxexpired) * WEEK) <...