Changeset 2448

Show
Ignore:
Timestamp:
01/10/07 19:49:13 (2 years ago)
Author:
dhozac
Message:

There is no vc_create_context. Stop referencing it.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/syscall.c

    r2272 r2448  
    6161} 
    6262 
    63 LINK_WARNING("vc_new_s_context", "warning: vc_new_s_context() is obsoleted; use vc_create_context() instead of"); 
     63LINK_WARNING("vc_new_s_context", "warning: vc_new_s_context() is obsoleted; use vc_ctx_create() instead of"); 
    6464LINK_WARNING("vc_set_ipv4root",  "warning: vc_set_ipv4root() is obsoleted; use vc_net_create() instead of"); 
    6565 
  • trunk/src/rpm-fake.c

    r2421 r2448  
    248248        (rc=vc_ctx_create(xid))==VC_NOCTX && 
    249249        errno!=EEXIST) { 
    250       perror(ENSC_WRAPPERS_PREFIX "vc_create_context()"); 
     250      perror(ENSC_WRAPPERS_PREFIX "vc_ctx_create()"); 
    251251      exit(255); 
    252252    } 
  • trunk/src/vcontext.c

    r2415 r2448  
    260260          case EEXIST   : 
    261261            if (!args->is_silentexist) 
    262               perror(ENSC_WRAPPERS_PREFIX "vc_create_context()"); 
     262              perror(ENSC_WRAPPERS_PREFIX "vc_ctx_create()"); 
    263263            return 254; 
    264264          default       : 
    265             perror(ENSC_WRAPPERS_PREFIX "vc_create_context()"); 
     265            perror(ENSC_WRAPPERS_PREFIX "vc_ctx_create()"); 
    266266            return wrapper_exit_code; 
    267267        }