Incoterms not to be diff from item

I need to be able to fulfill a customer requirement wherein Incoterms in the sales document header is not allowed to be different from the item. Where do I tweak the system to fulfill the requirement?

hi,
maintain the incoterm in the customer master data .
and in the pricing procedure maintain the condition type KF00 AND maintain the condition records for the same incoterms you are using in the customer master data.
hope this will solve your problem
Pls reward points if the answer  is helpful
REgards,
Murali

Similar Messages

  • Adding a new partner function in va01 has to differ in item wise

    Hi all
    here by adding a new partner function by item level in va01
    i hav a z partner table , that has some values , each values differ from item level
    for eg : item 1 (posnr) 10 , has a new partner called buyers1
    posnr 20 has buyers 2
    what i am facing probs is , i cannot append into table xvbpa (using a program mv45afzz) & form save_docu_prepare.
    xvbpa table item is not storing
    partne rwill come default from the customization , but my partner will be add depends on item / material .
    i have tested a scenario for eg . when i creating a orders , as soon as entered a dealer , the default parner will be setting , then i entered manually a new partner , then it is reflecting in a table with item
    customization partner doesn't hve a  item , where as while creating when i put manually it is reflecting in item level .
    and 1 more things , when i try to append it also , its is reflecting to all item in orders
    tel me how to refresh the new partner item wise , that also O.K

    nO ANSWER FOR THE QUES. NEED TO RAISE MORE QUES. SO ONLY I AM CLOSING

  • Read Combination segments for material account from item level

    Dear Value Consultant,
    Read Combination segments for material account from item level
    "For any inventory transactions"
    Is there is away to read the material account from item level , to affect the real combination segments not general combinations segments from item master or organization
    Business Impacts :
    All inventory transaction for all item will affect the same combination segments for material accounts
    After I transfer to GL, This not helps me to differentiate the balance for material value is related to any item category
    Also for Budget Wise , I want to map the budget on combination level for materials accounts , and this not actualize without affect the real combination for material accounts in subledger ,
    Thanks

    I have not seen any client asking for this, but you can consider Costing Hooks to create your own accounting engine for inventory transactions. Hope you are taalking about standard costing. In such case, costing hooks are available in Oracle for you to write your own accounting.
    Even better in R12, you can do this with setup in SLA.
    Thanks
    Nagamohan

  • Incoterms are not getting copied at the item level

    HI Gurus,
    I have an sales order where If we change the Incoterms at the header level, its not getting copied at the line Items. Its giving an information mesage stating, Header Business Data does not apply to Item.
    The Incoterms are intially getting copied from Customer master, but later I am not able to change it.
    Please let me know what might be the reasons ? If possible Please let me know some User exits which needs to be checked.
    Thanks,
    Swathi

    Check in VOV8 for your sale order type the following:-
    a)  If both Check Division and Item division are ticked, then system will pop up this message due to the fact that in the said sale order, the item division differs from header division
    b)  The field "ProdAttr.messages" should be blank
    Next go to VOV7, select your item category and execute.  There ensure that the box is ticked for "Business item".  If this is unticked, then system will copy all header data to line item and you cannot change it.
    thanks
    G. Lakshmipathi

  • Hi Friends... I'm trying to delete a back-up file on mu TC but I get the message "The operation could not be completed because the item "bands" is in use. I'd like to start the Back from scratch, could help me out with deleting the current file?

    Hi Friends...
    I’m trying to delete a back-up file on mu TC but I get the message “The operation could not be completed because the item “bands” is in use. I’d like to start the Back from scratch, could help me out with deleting the current file?

    Sorry, I am very confused. I asked the following question....
    Is this the only backup file on your Mac, or do you have other backup files and data on the Time Capsule disk?
    The answer that you gave was....
    This is the only one
    Now you are saying that....
    But I have lots of other files on Time Capsule! The back up file is only one of them.
    Can you clarify, please?

  • Item text and note not transfering to PO from SRM 5.0

    Hi,
    We are in SRM 5.0/ECC 6.0
    We have a requirement to transfer Item text and item note (Item Text/note to be printed on PO) to ECC PO. From SRM 5.0
    These Item note and Item text is available in PO->Iteam->Service->service text and line text.
    Please advice..
    thanks,
    shri

    For similar kind of problem in SRM 7.0 there is SAP note implementation : Note 1424590 - Text mapping from SRM SC to backend purchase requisition.
    can any one give solution for SRM 5.0

  • System is not picking up approvers from BADI in Item level workflow

    Hi All,
    My problem is that
    1. when I creat the shopping cart the system is picking up the correct approver from BADI and showing it in approval preview.
    2. My first level approver is a general task so Workitem going to the correct persons.
    3. after first level approver I am fillng approver in BADI for 2 nd level.
    4. But after first approval the SC is directly getting approved finally as system is not picking up approvers from the BADI.
    I dont understand the problem. even We applied SP9 as well, but the problem is not resolved.
    Please suggest something.
    Thanks
    Smita

    Hi ,
    I am pasting the code of my BADI.  Let me know if i need to do some changes.
    Regards,
    smita
    if lv_wf = '4'.
    1st approval step executed for indices 1 and 0
          IF actual_approval_index LE 1.
    First approval step (General task)
    endif.
    2. approval step executed for indices 2,1 and 0
          IF actual_approval_index LE 2.
    *break-point.
    **get the approver for the commodity
             LOOP AT lt_item INTO ls_item WHERE del_ind IS INITIAL.
    We consider only items, which are not deleted (del_ind = 'X')
    Set the product category
                MOVE ls_item-category_id TO lv_call_value1.
    Find the approver of this item based on the customizing table ZCOMMODITY
    CALL FUNCTION 'ZWF_COMODITY_ITEM_APPROVAL_GET'
       EXPORTING
         SC_GUID                          = ls_header-guid
         ITEM_GUID                        = ls_item-guid
       APPROVAL_DESCRIPTION             =
        HIDE_ITEMS_NOT_RESPONSIBLE       = 'X'
         CRITERION1                       = 'COMMODITY'
         CATEGORY_ID                      = ls_item-category_id
         ITEM_VALUE                       = ls_item-VALUE
         APPROVAL_INDEX                   = '2'
       CHANGING
         APPROVAL_TABLE                   = approval_table
         ITEM_APPROVAL_TABLE              = item_approval_table
        ITEM_APPROVAL_OBJ                = item_approval_obj
    endloop.
    *ELSEIF actual_approval_index EQ 2.
    don't process 2nd step
             no_further_approval_needed = 'X'.
    endif.
    endif. " if lv_wf = '4'.
    FUNCTION ZWF_COMODITY_ITEM_APPROVAL_GET.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(SC_GUID) TYPE  BBP_GUID
    *"     VALUE(ITEM_GUID) TYPE  BBP_GUID
    *"     VALUE(APPROVAL_DESCRIPTION) TYPE  BBP_STEP_DESCRIPTION OPTIONAL
    *"     VALUE(HIDE_ITEMS_NOT_RESPONSIBLE) TYPE  BOOLEAN OPTIONAL
    *"     REFERENCE(CRITERION1) TYPE  BBP_WFL_APP_CRITERION
    *"     VALUE(CATEGORY_ID) TYPE  ZBBP_CATEGORY_ID
    *"     VALUE(ITEM_VALUE) TYPE  BBP_VALUE
    *"     VALUE(APPROVAL_INDEX) TYPE  SWH_NUMC10
    *"  CHANGING
    *"     REFERENCE(APPROVAL_TABLE) TYPE  BBPT_WFL_APPROVAL_TABLE_BADI
    *"     REFERENCE(ITEM_APPROVAL_TABLE) TYPE  BBPT_WFL_ITEM_APPROVAL_BADI
    *"     REFERENCE(ITEM_APPROVAL_OBJ) TYPE  BBPT_WFL_ITEM_APPROVAL_OBJ
    *"       OPTIONAL
    this Function Module is for getting the commodity approvers
    for the commodity items, in the Shopping cart
      DATA:
        ls_approval_table      TYPE bbp_wfl_approval_table_badi,
        ls_item_approval_table TYPE bbps_wfl_item_approval,
        ls_approval_def        TYPE bbpt_wfl_lia_def,
        ls_item_approval_obj   TYPE BBPS_WFL_ITEM_APPROVAL_OBJ.
      DATA:
        lv_app_obj_guid   TYPE bbp_guid_32,
        lv_is_new_approval_object TYPE boolean.
    **structure for commodity data
    data : ls_commodity type zcommodity.
    data : lv_value1 type BBP_WFL_APP_PROPERTY.
      CONSTANTS:
          c_agent_is_user TYPE otype VALUE 'US'.
    First find the right approval object the item belongs to.
    All items of an approval object are approved togheter in
    this approval step, and therefore only one workitem is
    created for this items. IF possible use this standard function
    BBP_WFL_DIN_APP_OBJ_GET for creating the approval object.
    lv_value1 = category_id.
    CALL FUNCTION 'BBP_WFL_DIN_APP_OBJ_GET'
      EXPORTING
        SC_GUID                      = sc_guid
        CRITERION1                   = criterion1
      CRITERION2                   = ''
      CRITERION3                   = ''
       VALUE1                       = lv_value1
      VALUE2                       = ''
      VALUE3                       = ''
    IMPORTING
       APPROVAL_OBJ_GUID            = lv_app_obj_guid
      IS_NEW_APPROVAL_OBJECT       =
      TABLES
        ITEM_APP_OBJ                 = item_approval_obj
                  CALL FUNCTION 'BBP_WFL_DIN_APP_OBJ_GET'
                    EXPORTING
                      SC_GUID                      = sc_guid
                      CRITERION1                   = criterion1
                     CRITERION2                   = ''
                     CRITERION3                   = ''
                     VALUE1                       = lv_value1
                     VALUE2                       = ''
                     VALUE3                       = ''
                     IV_ITEM_VALUE                = ITEM_VALUE
                   IMPORTING
                     APPROVAL_OBJ_GUID            = lv_app_obj_guid
                     IS_NEW_APPROVAL_OBJECT       =
                    TABLES
                      ITEM_APP_OBJ                 = item_approval_obj.
    CALL FUNCTION 'BBP_WFL_DIN_APP_OBJ_GET'
       EXPORTING
         sc_guid                 = sc_guid
         criterion1              = criterion1
      CRITERION2              = ''
      CRITERION3              = ''
         value1                  = category_id
      VALUE2                  = ''
      VALUE3                  = ''
      IMPORTING
    If 2 items of the same shopping cart have the same
    values for the criterias, this function returns the
    same (!!!) approval object guid
        approval_obj_guid       = lv_app_obj_guid
       TABLES
    This table saves the criterias  for which the approval object
    was created. For example:
    |approval object1| "cost center" | 1000   |
    |approval object2| "cost center" | 1200   |
    |approval object3| "prod categ " | office |
        item_app_obj            = item_approval_obj
    Check if this approval object already exists in the approval
    table
      READ TABLE approval_table INTO ls_approval_table
              WITH KEY approval_object_guid = lv_app_obj_guid
                       approval_index       = approval_index.
      IF sy-subrc EQ 4.
        lv_is_new_approval_object = 'X'.
      ENDIF.
      IF lv_is_new_approval_object = 'X'.
    Now read your own approval table based on your criteria's
    **now check whether the category id is a commodity material and
    *find the responsible person for that and
    *check if the amount of item is falling in the approval limit of the comodity manager
    select single * from zcommodity into ls_commodity
    where CATEGORY_ID = category_id
    and ( ZFROMAMT <= item_value and ZTOAMT >= item_value ).
       SELECT * FROM bbpt_wfl_lia_def
                INTO CORRESPONDING FIELDS OF ls_approval_def
                WHERE
                      app_crit_name1  = criterion1 AND
                      app_crit_value1 = value1
       ENDSELECT.
        IF sy-subrc NE 4.
    Fill approval table (who is responsible for which approval
    object in which approval step)
          ls_approval_table-approval_index       = approval_index.
         CONCATENATE c_agent_is_user ls_approval_def-approval_agent1
                                 INTO ls_approval_table-approval_agent.
    CONCATENATE c_agent_is_user ls_commodity-person
                                  INTO ls_approval_table-approval_agent.
          ls_approval_table-name = ls_commodity-name.
          ls_approval_table-approval_description = approval_description.
          ls_approval_table-approval_object_guid = lv_app_obj_guid.
          ls_approval_table-hide_items_not_responsible =
                                  hide_items_not_responsible.
          APPEND ls_approval_table TO approval_table.
         IF ls_approval_def-approval_agent2 IS NOT INITIAL.
    Second approver for the same workitem exists
           CONCATENATE c_agent_is_user ls_approval_def-approval_agent2
                               INTO ls_approval_table-approval_agent.
           ls_approval_table-name = ls_approval_def-agent_string2.
           APPEND ls_approval_table TO approval_table.
         ENDIF.
        ENDIF.
      ENDIF.
    Fill item table (Which items belongs to which approval object)
      ls_item_approval_table-approval_object_guid = lv_app_obj_guid.
      ls_item_approval_table-approval_item_guid   = item_guid.
      APPEND ls_item_approval_table TO item_approval_table.
    **Fill Item approval object
    ls_item_approval_obj-sc_guid = sc_guid.
    ls_item_approval_obj-APP_CRIT_NAME1 = CRITERION1.
    ls_item_approval_obj-APP_CRIT_VALUE1 = CATEGORY_ID.
    ls_item_approval_obj-APPROVAL_OBJECT_GUID = lv_app_obj_guid.
    append ls_item_approval_obj to ITEM_APPROVAL_OBJ.

  • HT1391 I have purchased a song from itune but it is not listed under my purchased items, why

    I have purchased a song from itune but it is not listed under my purchased items, why

    By 'purchased items' do you mean the Purchased link under Quick Links in the store ? If you do then do other songs that you've purchased appear there (music can't be re-downloaded in all countries) ?

  • ASCP Taking Lead time to buy Item from Item Level and not from ASL

    Hi All.
    We have a buy Item Which is used at multiple Organization now we have defined processing Lead time for this Item at Item Level and ASL level (Global) However for different organization Like ABC and XYZ we have same supplier and Supplier Site for this item,
    Below is the details of Item
    Item's Processing Lead Time at Item Level
    Org - ABC - 35
    Org - XYZ - 15
    Item's Processing  Lead Time at ASL Level
    Org - ABC - 10
    Org - XYZ - 5
    Now when we run ASCP plan for org XYZ and check for exception, Item's Lead time is coming from Item Level (15) not from ASL Level (Does this is expected behavior from Oracle?)
    Regards.

    Hi Abhishek,
    I tested one more time with the same scenario, this time ASCP is considering Processing lead time form ASL only however it is considering processing lead time for another organization (When I am running ASCP plan for Org XYZ ASCP is considering Processing lead time for ABC).
    Does it is due to same supplier site for both the organization?
    Also it has an active sourcing rule for the same supplier
    Regards.

  • Company currency does not differ from company code currency

    Hi Everyone,
    I am a newbie in SAP FI. Forgive me if this is a rpet pos. I could not find an answer using search.
    Here is my problem:
    I defined a compay with currecny as USD. I defned two company codes one with currency USD and the other
    with currency INR.
    I assigned compay code 1 (with USD as currency) to cmpany successfully.
    However, when I tr t assign the secnd company ( wih INR currency)it gives me the following error:
    "Company currency does not differ from company code currency".
    How do I solv this problem.
    Thaks,
    Cheruvu

    hi
    when you defined your company currency as USD and Company code currency is also USD therefore it is not shown any warning but second company code currency taken as INR system  expressing warning since company currency and company code currency differs as company stands for group for consolidation point of view
    therefore it is only warning not error you can just enter and further configure nothing will be adverse
    regards
    srinivask

  • I need to change my current location in my apple ID but i am asked to finish my balance first .. Just 16 cents and its not enough to purchase any item from the app store .. What should i do ?

    Help .. I need to change my current location in my apple ID but i am asked to finish my balance first .. Just 16 cents and its not enough to purchase any item from the app store .. What should i do ?

    You can try contacting iTunes support via this page and ask if they can remove the balance : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • HT204088 Why my bill is not deducted discount from item on sale

    Why my bill is not deducted discount from item on sale? (Samurai vs Zombies Defense, 40 Gems is $0.99 but my bill is $1.99)

    VC0323,
    I apologize for any inconvenience this may have caused you. I have sent you a private message to further assist you.
    You can click on my name (Comcastcares) and click on "Private Message Me”. 
    At the top of each Forum page you will see a small envelope 
    This is the icon for Private Messages, referred to as ‘PM’s’. A Private Message is a way to communicate in private, to another User, Moderator, or Administrator out of public view in the Forums.
    The gray envelope icon will have a number next to it if you have any new messages waiting. 
    To open a PM to read it, double click on the envelope. If you click on the white envelope a window will open with tabs for your Private Message Inbox, Sent Messages, Friends, Ignored Users, and Compose new Message. You can also access this area by clicking on the Username in a Thread or post. By default, Private Messages are enabled. You can disable this feature in My Settings>Preferences> Private Messenger.
    http://forums.xfinity.com/t5/Billing/Price-increas/m-p/2542019
     

  • HT2905 can someone please tell me why I do not get the delete from disk option when trying to delete duplicate items

    can someone please tell me why I do not get the delete from disk option when trying to delete duplicate items

    The content must be in the iTunes directory structure for that option to appear.

  • Internal source cannot clean on a new install will not let me remove from disc even when formatting

    PLEASE HELP
    INSIDE MACHINE KILLING ALL OF 10 YEARS WORK@@@@
    Apr 24 06:10:37 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Apr 24 06:10:50 localhost bootlog[40]: BOOT_TIME: 1398345037 0
    Apr 24 06:10:50 localhost fseventsd[33]: could not open <</.fseventsd/fseventsd-uuid>> (No such file or directory)
    Apr 24 06:10:50 localhost fseventsd[33]: log dir: /.fseventsd getting new uuid: 9E314C08-3647-4A45-ABB0-BF73A979E483
    Apr 24 06:10:52 localhost blued[41]: Apple Bluetooth daemon started
    Apr 24 06:10:52 localhost com.apple.launchd[1] (com.apple.bsd.dirhelper): Throttling respawn: Will start in 7 seconds
    Apr 24 06:10:52 localhost blued[41]: [setSystemPreference] syncs returns false
    Apr 24 06:10:53: --- last message repeated 2 times ---
    Apr 24 06:10:53 localhost com.apple.launchd[1] (com.apple.smb.sharepoints[24]): Exited with exit code: 71
    Apr 24 06:10:54 localhost configd[13]: updateConfiguration(): no preferences.
    Apr 24 06:10:54 localhost configd[13]: BUG in libdispatch: 10A432 - 1656 - 0xa203
    Apr 24 06:10:55 localhost com.apple.launchd[1] (com.apple.bsd.dirhelper): Throttling respawn: Will start in 5 seconds
    Apr 24 06:11:00 localhost mDNSResponder[28]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Apr 24 06:11:04 localhost blued[41]: [_setUserPreference] syncs returns false
    Apr 24 06:11:04 localhost com.apple.usbmuxd[20]: usbmuxd-167.1 built for iTunesEightTwo on Jul  9 2009 at 14:02:00, running 32 bit
    Apr 24 06:11:04 localhost blued[41]: [_setUserPreference] syncs returns false
    Apr 24 06:11:06 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[29]: Login Window Application Started
    Apr 24 06:11:07 localhost com.apple.kextd[10]: /System/Library/Extensions/IOSerialFamily.kext/Contents/PlugIns/InternalModemSu pport.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    Apr 24 06:11:07: --- last message repeated 1 time ---
    Apr 24 06:11:07 localhost configd[13]: network configuration changed.
    Apr 24 06:11:08: --- last message repeated 1 time ---
    Apr 24 06:11:08 localhost com.apple.service_helper[90]: launchctl: Error unloading: com.apple.backupd-auto
    Apr 24 06:11:09 localhost com.apple.service_helper[90]: launchctl: Error unloading: com.apple.backupd-wake
    Apr 24 06:11:09 localhost com.apple.service_helper[90]: launchctl: Error unloading: com.apple.backupd-attach
    Apr 24 06:11:09 localhost mds[27]: (Normal) DiskStore: Creating index for /
    Apr 24 06:11:10 localhost com.apple.fontd[82]: FODBCheck: foRec->annexNumber != kInvalidAnnexNumber (0)
    Apr 24 06:11:19: --- last message repeated 1 time ---
    Apr 24 06:11:19 localhost configd[13]: New network configuration saved
    Apr 24 06:11:20 localhost configd[13]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    Apr 24 06:11:20 localhost configd[13]: DHCP en1: INIT transmit failed
    Apr 24 06:11:20 localhost configd[13]: network configuration changed.
    Apr 24 06:11:22 localhost mDNSResponder[28]: User updated Computer Name from “MacBook-000000000000” to “MacBook-00264A159BA6”
    Apr 24 06:11:22 localhost mDNSResponder[28]: User updated Local Hostname from “MacBook-000000000000” to “MacBook-00264A159BA6”
    Apr 24 06:11:22 localhost loginwindow[29]: USER_PROCESS: 29 console
    Apr 24 06:11:26 localhost /System/Library/CoreServices/Setup Assistant.app/Contents/MacOS/Setup Assistant[110]: ava warning: config record  spsCnt = 2, ppsCnt = 2
    Apr 24 06:12:26 localhost com.apple.kextcache[117]: InternalModemSupport.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    Apr 24 06:12:36: --- last message repeated 1 time ---
    Apr 24 06:12:36 localhost com.apple.kextcache[117]: Created prelinked kernel /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache_i386.D51389B2.
    Apr 24 06:13:28 localhost com.apple.coreservicesd[60]: ThrottleProcessIO: throttling disk i/o
    Apr 24 06:14:04 localhost Setup Assistant[110]: *** WARNING: Method selectRow:byExtendingSelection: in class NSTableView is deprecated. It will be removed in a future release and should no longer be used.
    Apr 24 06:14:54 localhost kextd[10]: updated kernel boot caches
    Apr 24 06:17:26 localhost mDNSResponder[28]: User updated Computer Name from “MacBook-00264A159BA6” to “oh my’s MacBook”
    Apr 24 06:17:26 oh-mys-MacBook configd[13]: setting hostname to "oh-mys-MacBook.local"
    Apr 24 06:17:27 oh-mys-MacBook mDNSResponder[28]: User updated Local Hostname from “MacBook-00264A159BA6” to “oh-mys-MacBook”
    Apr 24 06:17:28 oh-mys-MacBook com.apple.coreservicesd[60]: ThrottleProcessIO: throttling disk i/o
    Apr 24 06:17:59 oh-mys-MacBook ohmy[156]: /usr/libexec/ntpd-wrapper: scutil key State:/Network/Global/DNS not present after 30 seconds
    Apr 24 06:17:59 oh-mys-MacBook ohmy[159]: sntp options: a=2 v=1 e=0.100 E=5.000 P=2147483647.000
    Apr 24 06:17:59 oh-mys-MacBook ohmy[159]:     d=15 c=5 x=0 op=1 l=/var/run/sntp.pid f= time.apple.com
    Apr 24 06:17:59 oh-mys-MacBook ohmy[159]: sntp: getaddrinfo(hostname, ntp)  failed with nodename nor servname provided, or not known
    Apr 24 06:49:06 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Apr 24 06:49:11 localhost DirectoryService[14]: Improper shutdown detected
    Apr 24 06:49:15 localhost bootlog[38]: BOOT_TIME: 1398347344 0
    Apr 24 06:49:15 localhost fseventsd[32]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (2180 11 2305)
    Apr 24 06:49:15 localhost fseventsd[32]: log dir: /.fseventsd getting new uuid: 026BE8B3-818E-4CBD-B146-6F4937679938
    Apr 24 06:49:17 localhost blued[39]: Apple Bluetooth daemon started
    Apr 24 06:49:19 localhost mDNSResponder[27]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Apr 24 06:49:21 localhost configd[13]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    Apr 24 06:49:21 localhost configd[13]: DHCP en1: INIT transmit failed
    Apr 24 06:49:21 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[28]: Login Window Application Started
    Apr 24 06:49:21 localhost configd[13]: network configuration changed.
    Apr 24 06:49:21 oh-mys-MacBook configd[13]: setting hostname to "oh-mys-MacBook.local"
    Apr 24 06:49:23 oh-mys-MacBook com.apple.usbmuxd[20]: usbmuxd-167.1 built for iTunesEightTwo on Jul  9 2009 at 14:02:00, running 32 bit
    Apr 24 06:49:32 oh-mys-MacBook loginwindow[28]: Login Window Started Security Agent
    Apr 24 06:49:33 oh-mys-MacBook loginwindow[28]: Login Window - Returned from Security Agent
    Apr 24 06:49:33 oh-mys-MacBook loginwindow[28]: USER_PROCESS: 28 console
    Apr 24 06:49:33 oh-mys-MacBook com.apple.launchd.peruser.501[79] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Apr 24 06:49:34 oh-mys-MacBook migCacheCleanup[86]: Flushing Cache Locations...
    Apr 24 06:49:34 oh-mys-MacBook com.apple.loginwindow[28]: 2014-04-24 06:49:34.069 migCacheCleanup[86:903] Flushing Cache Locations...
    Apr 24 06:49:36 oh-mys-MacBook [0x0-0x6006].SoftwareUpdateCheck[94]: SoftwareUpdateCheck: network unreachable
    Apr 24 06:49:36 oh-mys-MacBook com.apple.launchd[1] (com.apple.suhelperd[99]): Exited with exit code: 2
    Apr 24 06:49:36 oh-mys-MacBook com.apple.launchd.peruser.501[79] ([0x0-0x6006].SoftwareUpdateCheck[94]): Exited with exit code: 3
    Apr 24 06:49:36 oh-mys-MacBook KernelEventAgent[29]: tid 00000000 received event(s) VQ_LOWDISK (4)
    Apr 24 06:50:32 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Apr 24 06:50:37 localhost DirectoryService[15]: Improper shutdown detected
    Apr 24 06:50:40 localhost bootlog[37]: BOOT_TIME: 1398347416 0
    Apr 24 06:50:43 localhost blued[38]: Apple Bluetooth daemon started
    Apr 24 06:50:44 localhost mDNSResponder[26]: mDNSResponder mDNSResponder-212.1 (Jul 24 2009 22:34:12) starting
    Apr 24 06:50:46 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[27]: Login Window Application Started
    Apr 24 06:50:46 localhost configd[13]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    Apr 24 06:50:46 localhost configd[13]: DHCP en1: INIT transmit failed
    Apr 24 06:50:47 localhost configd[13]: network configuration changed.
    Apr 24 06:50:47 oh-mys-MacBook configd[13]: setting hostname to "oh-mys-MacBook.local"
    Apr 24 06:50:49 oh-mys-MacBook com.apple.usbmuxd[20]: usbmuxd-167.1 built for iTunesEightTwo on Jul  9 2009 at 14:02:00, running 32 bit
    Apr 24 06:50:57 oh-mys-MacBook loginwindow[27]: Login Window Started Security Agent
    Apr 24 06:50:57 oh-mys-MacBook loginwindow[27]: Login Window - Returned from Security Agent
    Apr 24 06:50:57 oh-mys-MacBook loginwindow[27]: USER_PROCESS: 27 console
    Apr 24 06:50:57 oh-mys-MacBook com.apple.launchd.peruser.501[75] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Apr 24 06:51:00 oh-mys-MacBook KernelEventAgent[28]: tid 00000000 received event(s) VQ_LOWDISK (4)
    Apr 24 06:51:02 oh-mys-MacBook com.apple.fontd[88]: FODBCheck: foRec->annexNumber != kInvalidAnnexNumber (0)
    Apr 24 06:51:05 oh-mys-MacBook com.apple.launchd.peruser.501[75] (com.apple.Kerberos.renew.plist[103]): Exited with exit code: 1
    Apr 24 06:51:08 oh-mys-MacBook com.apple.fontd[88]: FODBCheck: foRec->annexNumber != kInvalidAnnexNumber (0)
    Apr 24 06:51:14 oh-mys-MacBook iCalExternalSync[114]: Client state being vacuumed
    Apr 24 06:51:14 oh-mys-MacBook DockSyncClient[117]: Client state being vacuumed
    Apr 24 06:51:18 oh-mys-MacBook root[120]: /usr/libexec/ntpd-wrapper: scutil key State:/Network/Global/DNS not present after 30 seconds
    Apr 24 06:51:18 oh-mys-MacBook root[123]: sntp options: a=2 v=1 e=0.100 E=5.000 P=2147483647.000
    Apr 24 06:51:18 oh-mys-MacBook root[123]:     d=15 c=5 x=0 op=1 l=/var/run/sntp.pid f= time.apple.com
    Apr 24 06:51:18 oh-mys-MacBook root[123]: sntp: getaddrinfo(hostname, ntp)  failed with nodename nor servname provided, or not known
    Apr 24 06:53:14 oh-mys-MacBook SyncServer[115]: Datamanager Vacuuming all the truth segments.
    Apr 24 07:00:57 oh-mys-MacBook System Preferences[132]: Could not connect the action resetLocationWarningsSheetOk: to target of class AppleSecurity_Pref
    Apr 24 07:00:57 oh-mys-MacBook System Preferences[132]: Could not connect the action resetLocationWarningsSheetCancel: to target of class AppleSecurity_Pref
    Apr 24 07:01:04 oh-mys-MacBook /System/Library/CoreServices/CCacheServer.app/Contents/MacOS/CCacheServer[109]: No valid tickets, timing out
    Apr 24 07:01:14 oh-mys-MacBook SecurityAgent[185]: system.preferences.security|2014-04-24 07:01:14 -0700
    Apr 24 07:08:29 oh-mys-MacBook WindowServer[55]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:08:29 oh-mys-MacBook com.apple.WindowServer[55]: Thu Apr 24 07:08:29 oh-mys-MacBook.local WindowServer[55] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:09:10 oh-mys-MacBook [0x0-0xd00d].com.apple.systempreferences[132]: objc[132]: Class ANPImageButtonCell is implemented in both /System/Library/PreferencePanes/Bluetooth.prefPane/Contents/MacOS/Bluetooth and /System/Library/PreferencePanes/Network.prefPane/Contents/MacOS/Network. One of the two will be used. Which one is undefined.
    Apr 24 07:09:10 oh-mys-MacBook [0x0-0xd00d].com.apple.systempreferences[132]: objc[132]: Class ANPImagePopUpButtonCell is implemented in both /System/Library/PreferencePanes/Bluetooth.prefPane/Contents/MacOS/Bluetooth and /System/Library/PreferencePanes/Network.prefPane/Contents/MacOS/Network. One of the two will be used. Which one is undefined.
    Apr 24 07:09:10 oh-mys-MacBook [0x0-0xd00d].com.apple.systempreferences[132]: objc[132]: Class ANPButtonBarView is implemented in both /System/Library/PreferencePanes/Bluetooth.prefPane/Contents/MacOS/Bluetooth and /System/Library/PreferencePanes/Network.prefPane/Contents/MacOS/Network. One of the two will be used. Which one is undefined.
    Apr 24 07:11:31 oh-mys-MacBook Apple80211 framework[132]: ACInterfaceGetPower called with NULL interface
    Apr 24 07:11:31 oh-mys-MacBook Apple80211 framework[132]: ACInterfaceCopyCurrentSSID called with NULL interface
    Apr 24 07:11:31 oh-mys-MacBook Apple80211 framework[132]: ACInterfaceGetPower called with NULL interface
    Apr 24 07:13:10: --- last message repeated 2 times ---
    Apr 24 07:13:10 oh-mys-MacBook ntpd_initres[124]: ntpd exiting on signal 15
    Apr 24 07:13:10 oh-mys-MacBook _spotlight[269]: sntp options: a=2 v=1 e=0.100 E=5.000 P=2147483647.000
    Apr 24 07:13:10 oh-mys-MacBook _spotlight[269]:     d=15 c=5 x=0 op=1 l=/var/run/sntp.pid f= time.apple.com
    Apr 24 07:13:10 oh-mys-MacBook _spotlight[269]: sntp: getaddrinfo(hostname, ntp)  failed with nodename nor servname provided, or not known
    Apr 24 07:15:06 oh-mys-MacBook System Preferences[132]: .scriptSuite warning for result type of command 'timedLoad' in suite 'SystemPreferences': the type NSNumber ('long') doesn't match the result Apple event code ('doub').
    Apr 24 07:15:07 oh-mys-MacBook DockSyncClient[286]: Client state being vacuumed
    Apr 24 07:16:16 oh-mys-MacBook Apple80211 framework[132]: ACInterfaceGetPower called with NULL interface
    Apr 24 07:16:16: --- last message repeated 1 time ---
    Apr 24 07:16:16 oh-mys-MacBook SCHelper[251]: no command
    Apr 24 07:16:37: --- last message repeated 1 time ---
    Apr 24 07:16:37 oh-mys-MacBook System Preferences[291]: .scriptSuite warning for result type of command 'timedLoad' in suite 'SystemPreferences': the type NSNumber ('long') doesn't match the result Apple event code ('doub').
    Apr 24 07:18:17 oh-mys-MacBook SecurityAgent[315]: system.preferences|2014-04-24 07:18:17 -0700
    Apr 24 07:18:29 oh-mys-MacBook System Preferences[291]: Could not connect the action resetLocationWarningsSheetOk: to target of class AppleSecurity_Pref
    Apr 24 07:18:29 oh-mys-MacBook System Preferences[291]: Could not connect the action resetLocationWarningsSheetCancel: to target of class AppleSecurity_Pref
    Apr 24 07:18:30 oh-mys-MacBook Apple80211 framework[291]: ACInterfaceGetPower called with NULL interface
    Apr 24 07:18:39 oh-mys-MacBook SecurityAgent[315]: system.preferences.security|2014-04-24 07:18:39 -0700
    Apr 24 07:19:10 oh-mys-MacBook com.apple.launchd.peruser.501[75] ([0x0-0x17017].com.apple.Console[235]): Exited: Killed
    Apr 24 07:19:10 oh-mys-MacBook SecurityAgent[315]: NSDocumentController's invocation of -[NSFileManager URLForDirectory:inDomain:appropriateForURL:create:error:] returned nil for NSAutosavedInformationDirectory. Here's the error:\nError Domain=NSCocoaErrorDomain Code=513 UserInfo=0x100154000 "You don’t have permission to save the file “Library” in the folder “empty”." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=13 "The operation couldn’t be completed. Permission denied")
    Apr 24 07:19:10 oh-mys-MacBook loginwindow[27]: DEAD_PROCESS: 27 console
    Apr 24 07:19:10 oh-mys-MacBook loginwindow[27]: Suspending per user launchd for this logout
    Apr 24 07:19:11 oh-mys-MacBook hdiejectd[327]: running
    Apr 24 07:19:21 oh-mys-MacBook hdiejectd[327]: quitCheck: calling exit(0)
    Apr 24 07:19:24 oh-mys-MacBook hdiejectd[337]: running
    Apr 24 07:19:26 oh-mys-MacBook loginwindow[27]: CGSShutdownServerConnections: Detaching application from window server
    Apr 24 07:19:26 oh-mys-MacBook com.apple.loginwindow[27]: Thu Apr 24 07:19:26 oh-mys-MacBook.local loginwindow[27] <Warning>: CGSShutdownServerConnections: Detaching application from window server
    Apr 24 07:19:26 oh-mys-MacBook loginwindow[27]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:19:26 oh-mys-MacBook loginwindow[27]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Apr 24 07:19:26 oh-mys-MacBook com.apple.loginwindow[27]: Thu Apr 24 07:19:26 oh-mys-MacBook.local loginwindow[27] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:19:26 oh-mys-MacBook com.apple.loginwindow[27]: Thu Apr 24 07:19:26 oh-mys-MacBook.local loginwindow[27] <Warning>: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Apr 24 07:19:26 oh-mys-MacBook loginwindow[27]: ERROR | -[LoginApp suspendPerUserLaunchd:] |     Could not resume, 501's launchd!
    Apr 24 07:19:26 oh-mys-MacBook com.apple.launchd[1] (com.apple.loginwindow[27]): Job exited before resuming per-user launchd for UID 501. Will forcibly resume.
    Apr 24 07:19:26 oh-mys-MacBook /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[346]: Login Window Application Started
    Apr 24 07:19:27 oh-mys-MacBook loginwindow[346]: Login Window Started Security Agent
    Apr 24 07:19:27 oh-mys-MacBook WindowServer[347]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:19:27 oh-mys-MacBook com.apple.WindowServer[347]: Thu Apr 24 07:19:27 oh-mys-MacBook.local WindowServer[347] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Apr 24 07:19:36 oh-mys-MacBook hdiejectd[337]: quitCheck: calling exit(0)
    Apr 24 07:19:48 oh-mys-MacBook SecurityAgent[352]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Apr 24 07:19:49 oh-mys-MacBook hdiejectd[367]: running
    Apr 24 07:19:49 oh-mys-MacBook fseventsd[31]: could not open <</Users/ohmy/.fseventsd/fseventsd-uuid>> (No such file or directory)
    Apr 24 07:19:49 oh-mys-MacBook fseventsd[31]: log dir: /Users/ohmy/.fseventsd getting new uuid: B97E12A0-A675-42D9-9642-01170B5D9905
    Apr 24 07:19:49 oh-mys-MacBook mds[25]: (Normal) DiskStore: Creating index for /Users/ohmy
    Apr 24 07:19:51 oh-mys-MacBook loginwindow[346]: Login Window - Returned from Security Agent
    Apr 24 07:19:51 oh-mys-MacBook loginwindow[346]: USER_PROCESS: 346 console
    Apr 24 07:19:51 oh-mys-MacBook com.apple.launchd.peruser.501[374] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Apr 24 07:19:54 oh-mys-MacBook com.apple.launchd.peruser.501[374] (com.apple.Kerberos.renew.plist[393]): Exited with exit code: 1
    Apr 24 07:19:56 oh-mys-MacBook KernelEventAgent[28]: tid 00000000 received event(s) VQ_LOWDISK (4)
    Apr 24 07:21:56 oh-mys-MacBook com.apple.backupd[410]: Starting standard backup
    Apr 24 07:22:01 oh-mys-MacBook com.apple.backupd[410]: Backup failed with error: 17
    Apr 24 07:22:18 oh-mys-MacBook AirPort Utility[444]: Could not connect the action importOK: to target of class AAUDocument
    Apr 24 07:22:18 oh-mys-MacBook AirPort Utility[444]: Could not connect the action importCancel: to target of class AAUDocument
    Apr 24 07:27:42 oh-mys-MacBook SecurityAgent[470]: system.preferences|2014-04-24 07:27:42 -0700
    Apr 24 07:29:53 oh-mys-MacBook /System/Library/CoreServices/CCacheServer.app/Contents/MacOS/CCacheServer[399]: No valid tickets, timing out
    Apr 24 07:38:42 oh-mys-MacBook Apple80211 framework[465]: SecKeychainSearchCopyNext() returned error: -25300
    Apr 24 07:38:42 oh-mys-MacBook Apple80211 framework[465]: _ACNetworkCopyKeychainItem() expected password for "HOME-48E2" not found: -25300 (The specified item could not be found in the keychain.)
    Apr 24 07:39:24 oh-mys-MacBook configd[13]: network configuration changed.
    Apr 24 07:43:12 oh-mys-MacBook configd[13]: network configuration changed.
    May  2 16:13:11 oh-mys-MacBook ntpd[265]: time reset +721725.592455 s
    May  2 16:13:21 oh-mys-MacBook SoftwareUpdateCheck[635]: Checking for updates
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.dashboardlauncher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.frontrowlauncher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.exposelauncher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.QuickTimePlayerX"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.spaceslauncher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.appstore"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.backup.launcher"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.BluetoothFileExchange"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PodcastCapture"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.keychainaccess"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PhotoBooth"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.VoiceOverUtility"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Console"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:13:45 oh-mys-MacBook SoftwareUpdateCheck[635]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    May  2 16:13:56 oh-mys-MacBook SoftwareUpdateCheck[635]: SWU: scan found 5 products:\n041-0259\n041-4627\n091-9423\nzzz041-5105\nzzzz041-6245
    May  2 16:13:56 oh-mys-MacBook SoftwareUpdateCheck[635]: Downloading "iTunes"
    May  2 16:14:32 oh-mys-MacBook SoftwareUpdateCheck[635]: Auto-download of "iTunes" SUCCESSFUL.
    May  2 16:14:32 oh-mys-MacBook SoftwareUpdateCheck[635]: SWU: downloading "iTunes, 10.6.3"
    May  2 16:14:32 oh-mys-MacBook SoftwareUpdateCheck[635]: Downloading "iLife Support"
    May  2 16:14:33 oh-mys-MacBook SoftwareUpdateCheck[635]: Auto-download of "iLife Support" SUCCESSFUL.
    May  2 16:14:33 oh-mys-MacBook SoftwareUpdateCheck[635]: SWU: downloading "iLife Support, 9.0.4"
    May  2 16:14:33 oh-mys-MacBook SoftwareUpdateCheck[635]: Downloading "Remote Desktop Client Update"
    May  2 16:14:35 oh-mys-MacBook SoftwareUpdateCheck[635]: Auto-download of "Remote Desktop Client Update" SUCCESSFUL.
    May  2 16:14:35 oh-mys-MacBook SoftwareUpdateCheck[635]: SWU: downloading "Remote Desktop Client Update, 3.5.4"
    May  2 16:14:35 oh-mys-MacBook SoftwareUpdateCheck[635]: Downloading "Mac OS X Update Combined"
    May  2 16:15:46 oh-mys-MacBook System Preferences[465]: Could not connect the action resetLocationWarningsSheetOk: to target of class AppleSecurity_Pref
    May  2 16:15:46 oh-mys-MacBook System Preferences[465]: Could not connect the action resetLocationWarningsSheetCancel: to target of class AppleSecurity_Pref
    May  2 16:15:55 oh-mys-MacBook SCHelper[475]: no command
    May  2 16:16:51: --- last message repeated 4 times ---
    May  2 16:17:58 oh-mys-MacBook SoftwareUpdateCheck[635]: Background check cancelled by user-initiated update.
    May  2 16:17:58 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x3f03f].SoftwareUpdateCheck[635]): Exited with exit code: 102
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.dashboardlauncher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.frontrowlauncher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.exposelauncher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.QuickTimePlayerX"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.spaceslauncher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.appstore"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.backup.launcher"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.BluetoothFileExchange"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PodcastCapture"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.keychainaccess"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PhotoBooth"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.VoiceOverUtility"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Console"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:18:18 oh-mys-MacBook Software Update[660]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    May  2 16:18:35 oh-mys-MacBook Software Update[660]: SWU: scan found 5 products:\n041-0259\n041-4627\n091-9423\nzzz041-5105\nzzzz041-6245
    May  2 16:18:36 oh-mys-MacBook PubSubAgent[664]: SQL Error: SQLITE_CANTOPEN[14.0]: Database file not found
    May  2 16:19:01 oh-mys-MacBook SecurityAgent[666]: system.privilege.admin|2014-05-02 16:19:01 -0700
    May  2 16:19:03 oh-mys-MacBook installd[667]: Starting
    May  2 16:19:03 oh-mys-MacBook installd[667]: uid=0, euid=0
    May  2 16:19:06 oh-mys-MacBook Software Update[660]: SWU: downloading "AirPort Utility, 5.6.1"
    May  2 16:19:39 oh-mys-MacBook Software Update[660]: SWU: downloading "Mac OS X Update Combined, 10.6.8 v1.1"
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x2f02f].com.apple.ActivityMonitor[424]): Exited: Killed
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x2c02c].com.apple.Console[405]): Exited: Killed
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x35035].com.apple.Preview[453]): Exited: Killed
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd.peruser.501[374] ([0x0-0x42042].com.apple.SoftwareUpdate[660]): Exited: Killed
    May  2 16:19:50 oh-mys-MacBook suhelperd[636]: Releasing session lock <SUSessionLock uid=501, pid=660, priority=0 from dead client
    May  2 16:19:50 oh-mys-MacBook com.apple.launchd[1] (com.apple.suhelperd[636]): Exited with exit code: 2
    May  2 16:19:50 oh-mys-MacBook SecurityAgent[666]: NSDocumentController's invocation of -[NSFileManager URLForDirectory:inDomain:appropriateForURL:create:error:] returned nil for NSAutosavedInformationDirectory. Here's the error:\nError Domain=NSCocoaErrorDomain Code=513 UserInfo=0x100105080 "You don’t have permission to save the file “Library” in the folder “empty”." Underlying Error=(Error Domain=NSPOSIXErrorDomain Code=13 "The operation couldn’t be completed. Permission denied")
    May  2 16:19:51 oh-mys-MacBook loginwindow[346]: DEAD_PROCESS: 346 console
    May  2 16:19:53 oh-mys-MacBook installd[667]: Exiting.
    May  2 16:19:57 oh-mys-MacBook com.apple.fontd[677]: Iterator create failed for file
    May  2 16:19:57 oh-mys-MacBook com.apple.fontd[677]: FODBError: FODBReviveFileTokens returned Zero.
    May  2 16:20:02 oh-mys-MacBook com.apple.fontd[677]: FODBCheck: foRec->annexNumber != kInvalidAnnexNumber (0)
    May  2 16:20:04: --- last message repeated 1 time ---
    May  2 16:20:04 oh-mys-MacBook diskimages-helper[680]: Reclaimed 4.5 MB out of 297.0 GB possible.
    May  2 16:20:06 oh-mys-MacBook /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[682]: Login Window Application Started
    May  2 16:20:06 oh-mys-MacBook hdiejectd[367]: quitCheck: calling exit(0)
    May  2 16:20:07 oh-mys-MacBook loginwindow[682]: USER_PROCESS: 682 console
    May  2 16:20:08 oh-mys-MacBook com.apple.WindowServer[683]: Fri May  2 16:20:08 oh-mys-MacBook.local WindowServer[683] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May  2 16:20:08 oh-mys-MacBook WindowServer[683]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May  2 16:20:08 oh-mys-MacBook configd[13]: network configuration changed.
    May  2 16:20:09 oh-mys-MacBook Software Update[689]: Looking for products to install
    May  2 16:20:09 oh-mys-MacBook Software Update[689]: Performing preflight
    May  2 16:20:09 oh-mys-MacBook Software Update[689]: Preparing session
    May  2 16:20:09 oh-mys-MacBook Software Update[689]: Starting session
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.dashboardlauncher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.frontrowlauncher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.exposelauncher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.QuickTimePlayerX"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.spaceslauncher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.appstore"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.backup.launcher"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.BluetoothFileExchange"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PodcastCapture"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.keychainaccess"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PhotoBooth"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.VoiceOverUtility"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:20:10: --- last message repeated 1 time ---
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Console"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    May  2 16:20:10: --- last message repeated 1 time ---
    May  2 16:20:10 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.dashboardlauncher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.frontrowlauncher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.exposelauncher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.QuickTimePlayerX"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.spaceslauncher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.appstore"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.backup.launcher"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.BluetoothFileExchange"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PodcastCapture"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.keychainaccess"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.PhotoBooth"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.VoiceOverUtility"></bundle>
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Safari"></bundle>
    May  2 16:20:11: --- last message repeated 1 time ---
    May  2 16:20:11 oh-mys-MacBook Software Update[689]: PackageKit: Missing bundle path, skipping: <bundle id="com.apple.Console"></bundle>
    May  2 16:20:35 oh-mys-MacBook com.apple.usbmuxd[20]: stopping.
    May  2 16:20:36 oh-mys-MacBook com.apple.usbmuxd[699]: usbmuxd-167.1 built for iTunesEightTwo on Jul  9 2009 at 14:02:00, running 32 bit
    May  2 16:20:48 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.AirPortUtility"
    May  2 16:20:49 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:20:50 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.RemoteDesktopClient"
    May  2 16:20:52 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:20:57 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:21:04 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:21:15 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:21:25 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:21:39 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:21:44 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:21:50 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:21:53 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:21:56 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:21:57 oh-mys-MacBook ntpd[265]: sendto(17.151.16.14) (fd=24): No route to host
    May  2 16:22:05 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:22:29 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:22:46 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.os.10.6.8.combo.part12"
    May  2 16:23:28 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.subasesystem.10.6.8.combo"
    May  2 16:23:29 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.quicktimeplayer7.10.6.8.combo"
    May  2 16:23:33 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.X11.10.6.8.combo"
    May  2 16:23:34 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.update.rosetta.10.6.8.combo"
    May  2 16:23:35 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.AppleMobileDeviceSupport"
    May  2 16:23:36 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.CoreFP"
    May  2 16:23:38 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.CoreFP1"
    May  2 16:23:51 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.iTunesX"
    May  2 16:23:52 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.iTunesAccess"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: extracting "com.apple.pkg.iTunesLibrary"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.AirPortUtility"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.RemoteDesktopClient"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part12"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.subasesystem.10.6.8.combo"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.quicktimeplayer7.10.6.8.combo"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.X11.10.6.8.combo"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.update.rosetta.10.6.8.combo"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.AppleMobileDeviceSupport"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.CoreFP"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.CoreFP1"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.iTunesX"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.iTunesAccess"
    May  2 16:23:53 oh-mys-MacBook Software Update[689]: PKG: pre-flight scripts for "com.apple.pkg.iTunesLibrary"
    May  2 16:23:58 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.AirPortUtility"
    May  2 16:23:58 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:23:58 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.RemoteDesktopClient"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part12"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.subasesystem.10.6.8.combo"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.quicktimeplayer7.10.6.8.combo"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.X11.10.6.8.combo"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.update.rosetta.10.6.8.combo"
    May  2 16:24:00 oh-mys-MacBook sudo[797]: root : TTY=unknown ; PWD=/private/tmp/PKInstallSandbox.S3zXbR/Scripts/com.apple.pkg.AppleMobileDevic eSupport.9yc6lT ; USER=root ; COMMAND=/bin/launchctl unload //System/Library/LaunchDaemons/com.apple.usbmuxd.plist
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.AppleMobileDeviceSupport"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.CoreFP"
    May  2 16:24:00 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.CoreFP1"
    May  2 16:24:05 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.iTunesX"
    May  2 16:24:05 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.iTunesAccess"
    May  2 16:24:05 oh-mys-MacBook Software Update[689]: PKG: pre-install scripts for "com.apple.pkg.iTunesLibrary"
    May  2 16:26:45 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:26:45 oh-mys-MacBook com.apple.kextd[10]: Rescanning kernel extensions.
    May  2 16:26:45 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:26:58 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:26:58 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:26:58 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:26:58 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:27:00 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:27:40 oh-mys-MacBook com.apple.kextd[10]: Failed to load /System/Library/Extensions/AppleMCCSControl.kext - (libkern/kext) link error.
    May  2 16:27:40 oh-mys-MacBook com.apple.kextd[10]: Load com.apple.driver.AppleMCCSControl failed; removing personalities.
    May  2 16:27:42 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:27:42 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:27:42 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:27:42 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:29:03 oh-mys-MacBook Software Update[689]: REQ: moving files into place with shove
    May  2 16:29:08 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:29:08 oh-mys-MacBook com.apple.kextd[10]: Rescanning kernel extensions.
    May  2 16:29:08 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:29:17 oh-mys-MacBook com.apple.kextcache[882]: JMicronATA.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    May  2 16:29:19 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:29:20 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:29:20 oh-mys-MacBook mdworker[700]: Error loading /System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText:  dlopen(/System/Library/Spotlight/RichText.mdimporter/Contents/MacOS/RichText, 262): Symbol not found: __AXUIElementCreateApplicationWithPresenterPid\n  Referenced from: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit\n  Expected in: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services\n in /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    May  2 16:29:20 oh-mys-MacBook mdworker[700]: Cannot find function pointer RichTextSnifferPluginFactory for factory 502B7F32-60DD-11D8-87A4-000393CC3466 in CFBundle/CFPlugIn 0x100129130 </System/Library/Spotlight/RichText.mdimporter> (bundle, not loaded)
    May  2 16:29:30 oh-mys-MacBook com.apple.kextcache[881]: Source directory has changed since starting; not saving cache file /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache_i386.D51389B2.
    May  2 16:29:33 oh-mys-MacBook com.apple.kextcache[882]: Source directory has changed since starting; not saving cache file //System/Library/Caches/com.apple.kext.caches/Startup/Extensions.mkext.
    May  2 16:29:34 oh-mys-MacBook com.apple.kextcache[880]: Child process /usr/sbin/kextcache[882] exited with status 4.
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: async child pid 881 exited with status 4
    May  2 16:29:45 oh-mys-MacBook com.apple.kextcache[884]: / locked; waiting for lock.
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: Failed to load /System/Library/Extensions/AppleMCCSControl.kext - (libkern/kext) link error.
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: Load com.apple.driver.AppleMCCSControl failed; removing personalities.
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: kextcache error while updating / (error count: 1)
    May  2 16:29:45 oh-mys-MacBook com.apple.kextd[10]: async child pid 880 exited with status 70
    May  2 16:29:51 oh-mys-MacBook kextd[10]: updated kernel boot caches
    May  2 16:29:51 oh-mys-MacBook com.apple.kextd[10]: kextcache succeeded with '/'.
    May  2 16:29:51 oh-mys-MacBook com.apple.kextcache[884]: Lock acquired; proceeding.
    May  2 16:29:51 oh-mys-MacBook com.apple.kextcache[884]: /: no supported helper partitions to update.
    May  2 16:29:51 oh-mys-MacBook kextd[10]: updated kernel boot caches
    May  2 16:29:55 oh-mys-MacBook defaults[918]: \nThe domain/default pair of (/Users//Library/Preferences/.GlobalPreferences, AppleLocale) does not exist
    May  2 16:29:55 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.AirPortUtility"
    May  2 16:29:56 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:30:05 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.RemoteDesktopClient"
    May  2 16:30:18 oh-mys-MacBook MRTAgent[1357]: 3891612: (connectAndCheck) Untrusted apps are not allowed to connect to or launch Window Server before login.
    May  2 16:30:18 oh-mys-MacBook com.apple.mrt.uiagent[1357]: Fri May  2 16:30:18 oh-mys-MacBook.local MRTAgent[1357] <Warning>: 3891612: (connectAndCheck) Untrusted apps are not allowed to connect to or launch Window Server before login.
    May  2 16:30:18 oh-mys-MacBook MRTAgent[1357]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May  2 16:30:18 oh-mys-MacBook com.apple.mrt.uiagent[1357]: Fri May  2 16:30:18 oh-mys-MacBook.local MRTAgent[1357] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    May  2 16:30:18 oh-mys-MacBook /System/Library/CoreServices/MRTAgent.app/Contents/MacOS/MRTAgent[1357]: _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
    May  2 16:30:18 oh-mys-MacBook com.apple.mrt.uiagent[1357]: _RegisterApplication(), FAILED TO establish the default connection to the WindowServer, _CGSDefaultConnection() is NULL.
    May  2 16:30:21 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:30:21 oh-mys-MacBook com.apple.kextd[10]: Rescanning kernel extensions.
    May  2 16:30:21 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:30:21 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:30:26 oh-mys-MacBook com.apple.kextd[10]: Failed to load AppleMCCSControl.kext - (libkern/kext) link error.
    May  2 16:30:26 oh-mys-MacBook com.apple.kextd[10]: Load com.apple.driver.AppleMCCSControl failed; removing personalities.
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.os.10.6.8.combo.part12"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.subasesystem.10.6.8.combo"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.quicktimeplayer7.10.6.8.combo"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.X11.10.6.8.combo"
    May  2 16:31:50 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.update.rosetta.10.6.8.combo"
    May  2 16:31:51 oh-mys-MacBook com.apple.kextd[10]: Rescanning kernel extensions.
    May  2 16:31:51 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/KextIdentifiers.plist.gz is out of date; not using.
    May  2 16:32:02 oh-mys-MacBook com.apple.kextd[10]: Cache file /System/Library/Caches/com.apple.kext.caches/Directories//System/Library/Extens ions/IOKitPersonalities_i386.ioplist.gz is out of date; not using.
    May  2 16:32:17 oh-mys-MacBook com.apple.kextd[10]: Failed to load AppleMCCSControl.kext - (libkern/kext) link error.
    May  2 16:32:17 oh-mys-MacBook com.apple.kextd[10]: Load com.apple.driver.AppleMCCSControl failed; removing personalities.
    May  2 16:32:20 oh-mys-MacBook sudo[1434]: root : TTY=unknown ; PWD=/private/tmp/PKInstallSandbox.S3zXbR/Scripts/com.apple.pkg.AppleMobileDevic eSupport.9yc6lT ; USER=root ; COMMAND=/bin/launchctl load //System/Library/LaunchDaemons/com.apple.usbmuxd.plist
    May  2 16:32:21 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.AppleMobileDeviceSupport"
    May  2 16:32:21 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.CoreFP"
    May  2 16:32:21 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.CoreFP1"
    May  2 16:32:21 oh-mys-MacBook com.apple.usbmuxd[1435]: usbmuxd-268.5 on Apr  5 2012 at 15:33:48, running 64 bit
    May  2 16:32:22 oh-mys-MacBook com.apple.kextcache[1428]: / locked; waiting for lock.
    May  2 16:32:27 oh-mys-MacBook com.apple.kextcache[1416]: JMicronATA.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.iTunesX"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.iTunesAccess"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-install scripts for "com.apple.pkg.iTunesLibrary"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.AirPortUtility"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.iLifeMediaBrowser_215"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.RemoteDesktopClient"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part0"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part1"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part2"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part3"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part4"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part5"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part6"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part7"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part8"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part9"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part10"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.apple.pkg.update.os.10.6.8.combo.part11"
    May  2 16:32:35 oh-mys-MacBook Software Update[689]: PKG: post-flight scripts for "com.a

    and this keeps happening
    Repairing permissions for “Untitled 1”
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle", should be drwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib", should be -rwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Home/lib/security/cacerts", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/deploy.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/libdeploy.jnilib", should be -rwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/libdeploy.jnilib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b".
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib".
    ACL found but not expected on "private/var/root/Library".
    Repaired "private/var/root/Library".
    ACL found but not expected on "private/var/root/Library/Preferences".
    Repaired "private/var/root/Library/Preferences".
    Permissions repair complete
    Verifying volume “Untitled 1”
    Performing live verification.
    Checking Journaled HFS Plus volume.
    Stopped by user
    Checking extents overflow file.
    Checking catalog file.
    Repairing permissions for “Untitled 1”
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle", should be drwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib", should be -rwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Home/lib/security/cacerts", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/deploy.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/libdeploy.jnilib", should be -rwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/ Contents/Resources/Java/libdeploy.jnilib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/English.lproj/RemoteDesktopMenu.ni b".
    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/English.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/English.lproj/MainMenu.nib".
    ACL found but not expected on "private/var/root/Library".
    Repaired "private/var/root/Library".
    ACL found but not expected on "private/var/root/Library/Preferences".
    Repaired "private/var/root/Library/Preferences".
    Permissions repair complete
    Repairing permissions for “Untitled 1”
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Home/lib/security/cacerts".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_TW.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_TW.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_TW.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/zh_CN.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/zh_CN.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/zh_CN.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/ko.lproj/RemoteDesktopMenu.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/ko.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/ko.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" , should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Dutch.lproj/RemoteDesktopMenu.nib" .
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Dutch.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Dutch.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Italian.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Italian.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Spanish.lproj/RemoteDesktopMenu.ni b".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Spanish.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Spanish.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/French.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/French.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/French.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/German.lproj/RemoteDesktopMenu.nib ".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/German.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/German.lproj/MainMenu.nib".
    Permissions differ on "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/Menu Extras/RemoteDesktop.menu/Contents/Resources/Japanese.lproj/RemoteDesktopMenu.n ib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Japanese.lproj/UIAgent.nib".
    Permissions differ on "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib", should be drwxr-xr-x , they are -rwxr-xr-x .
    Repaired "System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/LockScreen.app/Contents/Resources/Japanese.lproj/MainMenu.nib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/V

  • Net price in R/3 PO differ from the actual local PO net price Urgent

    Hi,
    I  am working on extended classic scenario
    I created a local PO, in which the net price of the material is 100 Euro later on I changed the payment terms and when I checked the backend PO which is the copy of the local PO, I found that the net price has been changed from 100 Euro to 212 Euro and when I checked the PO in SRM I could see the same value i.e. 100 Euro.I checked the change document in backend system and found that the net price has been changed by the SRM_RFC user.
    This has happened for quite a few number of local PO
    I am not able to understand how the backend PO net price can differ from the local PO net price.
    Please provide me useful input
    Regards,
    Yatendra

    Hi Yatendra,
    I think this is due to R/3.
    Can you check the source of supply in R/3 PO ?
    especially if a PIR or contract has been assigned ?
    Look at price conditions in R/3 PO item, to see the execution plan of pricing.
    I think that during ECS PO creation in R/3, the SRM price is correctly passed, but during the change the price is overwritten by R/3.
    What are your SRM & R/3 releases ?
    Check OSS arround BAPI_PO_CREATE, BAPI_PO_CREATE1 and BAPI_PO_CHANGE.
    Rgds
    Christophe
    PS: please reward points for helpfull answers

Maybe you are looking for