IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6188


Ignore:
Timestamp:
Jan 23, 2006, 5:16:52 PM (20 years ago)
Author:
jhoblitt
Message:

fix api example

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/lib/Nebulous/Client/QuickStart.pod

    r5050 r6188  
    3939    $neb->delete($key);
    4040
    41     my $fh = $neb->create($key);
     41    my $fh = $neb->open_create($key);
    4242    die "can't create file $key " unless $fh;
    4343    close($fh);
     
    112112        nebDelete(server, key);
    113113
    114         int fh = nebCreate(server, key, 0, NULL, NULL, NULL);
     114        int fh = nebOpenCreate(server, key, 0, NULL, NULL, NULL);
    115115        if (fh < 0) {
    116             printf( "nebCreate() failed: %s\n", nebErr(server));
     116            printf( "nebOpenCreate() failed: %s\n", nebErr(server));
    117117            exit(EXIT_FAILURE);
    118118        }
Note: See TracChangeset for help on using the changeset viewer.