search for: 700s

Displaying 7 results from an estimated 7 matches for "700s".

Did you mean: 700
2006 Mar 13
1
Log message
...Although sshd reports it with syslog error message which is very helpful, I'd like to know the source ip address with following message: canohost.c: around line #100 if (getaddrinfo(name, NULL, &hints, &aitop) != 0) { logit("reverse mapping checking getaddrinfo for %.700s " "from address %.100s failed - POSSIBLE BREAKIN ATTEMPT!", ntop, name); return xstrdup(ntop); } I added ip address to the message. Since the name woun't be abled to be resolved correctly, reporting only host name won't help so. Please ap...
2008 Oct 05
1
nouveau on opensuse 11 request for help
...ries. I think I could get around this problem by downloading rpms to my local rpm repository. However, my second stumbling block is that the very word "git" just makes me think I'm getting in over my head. I have a NEC 2190uxi LCD, resolution 1600x1200 and an old Samsung Syncmaster 700s CRT, resolution 1280x1024, currently running a 2880x1200 desktop (Samsung below NEC) with twinview. The NEC can physically rotate to portrait position. The Samsung, obviously, doesn't rotate. I don't play games on my computer. I do a lot of 16-bit image processing, but strictly 2-D. I...
2002 Dec 26
8
Is this just anti-Ogg FUD?
...ame principle holds with headphones. You are not typically going to get the "subsonics" out of it listening to the files on headphones. It may sound slightly out of tune, or out of phase. Good head phone definitely help, but even high end sony's like the MDR-7506's and the MDJ-700s are only just able to produce the subsonics effectively to hear it. [Ogg is not free from patents.] The entire concept of a phsychoacustical model or a perceptual model for endcoding the material (not just the encoding step itself) is covered under at least 50 different patents by companies wo...
2000 Dec 27
2
patch to support hurd-i386
...lowercase (which is expected by the rest * of this software). @@ -97,7 +109,7 @@ hints.ai_socktype = SOCK_STREAM; if (getaddrinfo(name, NULL, &hints, &aitop) != 0) { log("reverse mapping checking getaddrinfo for %.700s failed - POSSIBLE BREAKIN ATTEMPT!", name); - strlcpy(name, ntop, sizeof name); + strlcpy(name, ntop, name_size); goto check_ip_options; } /* Look for the address from the list of addresses. */...
2000 Feb 01
3
logging RSA key IDs
Hi. To compartmentalize things a bit (e.g., to help limit the damage should one of my machines be hacked and my private RSA keys stolen) I use different RSA key pairs on my different client machines. So it occurs to me that it would be nice if ssh could log which key was used when logging in to a particular account that has more than one entry in .ssh/authorized_keys. Right now it simply says
2000 Feb 25
5
HP supporting samba
In the web it states HP does support samba and there is a link. Following this link I read nothing about samba, it may be wrong. Can someone point me to the right link please ? This is very very important for me. Thank you.
2005 Jan 20
0
AllowUsers - proposal for useful variations on the theme
...39;); + *p++ = '\0'; + + if ((ret = match_pattern(user, pat)) == 1) { + memset(&hints, 0, sizeof(hints)); + hints.ai_socktype = SOCK_DGRAM; /* dummy */ + if (getaddrinfo(p, NULL, &hints, &aitop) != 0) { + logit("checking getaddrinfo for %.700s failed - " + "check AllowUsersFixedname entry!", p); + ret = 0; + } else { + ret = 0; + for (ai = aitop; ai; ai = ai->ai_next) { + if (getnameinfo(ai->ai_addr, ai->ai_addrlen, + ntop, sizeof(ntop), NULL, 0, +...