backout bad fix for utmpx.py
authorMary Ding <mary.ding@oracle.com>
Wed, 13 Jul 2011 10:52:26 -0700
changeset 1278 cd79707b3373
parent 1277 b2ac3a6ed76b
child 1279 27b2fdc9e5e8
backout bad fix for utmpx.py
usr/src/cmd/auto-install/utmpx.py
--- a/usr/src/cmd/auto-install/utmpx.py	Wed Jul 13 13:09:42 2011 -0400
+++ b/usr/src/cmd/auto-install/utmpx.py	Wed Jul 13 10:52:26 2011 -0700
@@ -67,18 +67,18 @@
         };
     """
     _fields_ = [
-        ("ut_user", C.c_char * 32),
-        ("ut_id", C.c_char * 4),
-        ("ut_line", C.c_char * 32),
-        ("ut_pid", C.c_uint),
-        ("ut_type", C.c_short),
-        ("ut_exit", C.c_short * 2),  # Shouldn't need it, so no need for
-                                     # struct here just yet.
-        ("ut_tv", C.c_long * 2),   # or here either.
-        ("ut_session", C.c_int),
-        ("pad", C.c_int * 5),
-        ("ut_syslen", C.c_short),
-        ("ut_host", C.c_char * 257)
+        ("ut_user",     C.c_char * 32),
+        ("ut_id",       C.c_char * 4),
+        ("ut_line",     C.c_char * 32),
+        ("ut_pid",      C.c_uint),
+        ("ut_type",     C.c_short),
+        ("ut_exit",     C.c_short * 2),  # Shouldn't need it, so no need for
+                                         # struct here just yet.
+        ("ut_tv",       C.c_long * 2),   # or here either.
+        ("ut_session",  C.c_int),
+        ("pad",         C.c_int * 5),
+        ("ut_syslen",   C.c_short),
+        ("ut_host",     C.c_char * 257)
     ]
 
 _FUNCS = [