pwent/spent #ifdef imbalance.
Jarkko Hietaniemi [Tue, 2 May 2000 00:06:38 +0000 (00:06 +0000)]
p4raw-id: //depot/cfgperl@6038

pp_sys.c

index 79938fb..765b0bc 100644 (file)
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -4821,11 +4821,11 @@ PP(pp_gpwent)
        PUSHs(sv = sv_mortalcopy(&PL_sv_no));
 #   ifdef HAS_GETSPNAM
       if (spwent)
-              sv_setpv(sv, spwent->sp_pwdp);
+         sv_setpv(sv, spwent->sp_pwdp);
       else
-              sv_setpv(sv, pwent->pw_passwd);
+         sv_setpv(sv, pwent->pw_passwd);
 #   else
-       sv_setpv(sv, pwent->pw_passwd);
+      sv_setpv(sv, pwent->pw_passwd);
 #   endif
 #   ifndef INCOMPLETE_TAINTS
        /* passwd is tainted because user himself can diddle with it. */
@@ -4853,8 +4853,9 @@ PP(pp_gpwent)
 #       ifdef PWQUOTA
        sv_setiv(sv, (IV)pwent->pw_quota);
 #       else
-#       ifdef PWAGE
+#           ifdef PWAGE
        sv_setpv(sv, pwent->pw_age);
+#           endif
 #       endif
 #   endif