IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 8, 2005, 11:30:50 AM (21 years ago)
Author:
jhoblitt
Message:

change nebMove() to return bool
add nebMove() src

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/nebclient/src/test.c

    r4510 r4519  
    6363    }
    6464
    65     if (!nebDelete(server, "copyiedfile")) {
     65    if (!nebMove(server, "copyiedfile", "movedfile")) {
     66        printf("move failed: %s\n", nebErr(server));
     67    } else {
     68        printf("move succeeded\n");
     69    }
     70
     71    if (!nebDelete(server, "movedfile")) {
    6672        printf( "delete failed\n" );
    6773    } else {
Note: See TracChangeset for help on using the changeset viewer.