=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/monitor.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- src/usr.bin/ssh/monitor.c 2002/03/19 21:12:48 1.5 +++ src/usr.bin/ssh/monitor.c 2002/03/21 18:38:33 1.6 @@ -25,7 +25,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: monitor.c,v 1.5 2002/03/19 21:12:48 markus Exp $"); +RCSID("$OpenBSD: monitor.c,v 1.6 2002/03/21 18:38:33 stevesk Exp $"); #include @@ -520,13 +520,13 @@ authctxt->service = buffer_get_string(m, NULL); authctxt->style = buffer_get_string(m, NULL); + debug3("%s: service=%s, style=%s", + __FUNCTION__, authctxt->service, authctxt->style); + if (strlen(authctxt->style) == 0) { xfree(authctxt->style); authctxt->style = NULL; } - - debug3("%s: service=%s, style=%s", - __FUNCTION__, authctxt->service, authctxt->style); return (0); }