search for: agraz

Displaying 4 results from an estimated 4 matches for "agraz".

Did you mean: graz
1999 Dec 06
2
Pam errors in Solaris
...ur local Solution Center. North American customers can call 1-800-USA-4SUN. I also didn't have much luck finding out just what bugid 4172457 is, so I'm afraid I can't even tell if it's relevant. Has anyone access to this patch, and if so how has running sshd gone? thanks, David Agraz _____________________________________________________ Sent by Jahoopa Free Email! Find us on the web at http://www.jahoopa.com Join today!
1999 Dec 16
4
ANNOUNCE: openssh-1.2.1pre18
...lue.umd.edu - Fix installation on Solaris. Reported by Gordon Rowell <gordonr at gormand.com.au> - Fix gccisms (__attribute__ and inline). Report by edgy at us.ibm.com, patch from Markus Friedl <markus.friedl at informatik.uni-erlangen.de> - Auto-locate xauth. Patch from David Agraz <dagraz at jahoopa.com> - Compile fix from David Agraz <dagraz at jahoopa.com> - Avoid compiler warning in bsd-snprintf.c - Added pam_limits.so to default PAM config. Suggested by Jim Knoble <jmknoble at pobox.com> - -- | "Bombay is 250ms from New York in the new wor...
1999 Dec 09
1
bsd-login.c in pre17
Just a small fix: if #ifdef is given multiple arguments, it only evaluates the first and ignores the rest of the line... Also added #include <string.h> to prevent compiler warning about strncmp in login. enjoy, -dagraz --- bsd-login.c.orig Thu Dec 9 14:52:27 1999 +++ bsd-login.c Thu Dec 9 14:58:42 1999 @@ -52,6 +52,7 @@ # include <utmp.h> #endif #include <stdio.h> +#include <string.h> void login(utp) @@ -78,7 +79,7 @@ tty = ttyslot(); if (tty > 0 && (fd...
1999 Dec 09
0
xauth location in openssh-1.2pre17
...stem. Contained below are patches to find the path of xauth in configure, and set the path in config.h. (also contained is a patch for configure for those without autoconf) Also-- added #include "bsd-daemon" to includes.h, which quiets a compiler warning in sshd.c. hope this helps, -dagraz --- configure.in.orig Thu Dec 9 14:16:45 1999 +++ configure.in Thu Dec 9 14:14:42 1999 @@ -287,4 +287,8 @@ [AC_DEFINE(HAVE_MD5_PASSWORDS)] ) +dnl Check for the path to xauth +AC_PATH_PROG(xauth_path, xauth) +AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path") + AC_OUTPUT...