perl5.004 hints file (maint and dev paths)
[p5sagit/p5-mst-13.2.git] / pp_sys.c
index 3a6010f..1814a59 100644 (file)
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -493,7 +493,7 @@ PP(pp_umask)
     TAINT_PROPER("umask");
     XPUSHi(anum);
 #else
-    XPUSHs(&sv_undef)
+    XPUSHs(&sv_undef);
 #endif
     RETURN;
 }
@@ -1968,7 +1968,7 @@ PP(pp_ssockopt)
                buf = SvPV(sv, na);
                len = na;
            }
-           else if (SvOK(sv)) {
+           else {
                aint = (int)SvIV(sv);
                buf = (char*)&aint;
                len = sizeof(int);