IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 13201


Ignore:
Timestamp:
May 3, 2007, 11:28:30 AM (19 years ago)
Author:
jhoblitt
Message:

disable building of nebCopyFile() by default

File:
1 edited

Legend:

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

    r13200 r13201  
    44 * Copyright (C) 2005  Joshua Hoblitt
    55 *
    6  * $Id: nebclient.c,v 1.45 2007-05-03 21:26:55 jhoblitt Exp $
     6 * $Id: nebclient.c,v 1.46 2007-05-03 21:28:30 jhoblitt Exp $
    77 */
    88
     
    3838    }
    3939
     40#define NEBCOPYFILE 0
     41
    4042static void p_nebSetErr(const char * filename, unsigned long lineno, const char *function, nebServer *server, const char *format, ...);
    4143static void nebSetServerErr(nebServer *server);
     44#if NEBCOPYFILE
    4245static off_t nebCopyFile(nebServer *server, const char *source, const char *dest);
     46#endif
    4347static off_t nebCopyFilehandle(nebServer *server, int sourceFH, int destFH);
     48
    4449static size_t nebParseURI(nebServer *server, const char *URI, char **filename);
    4550static bool nebNukeFile(nebServer *server, const char *filename);
     
    724729}
    725730
     731#if NEBCOPYFILE
    726732static off_t nebCopyFile(nebServer *server, const char *source, const char *dest)
    727733{
     
    765771    return bytesCopied;
    766772}
     773#endif
    767774
    768775static off_t nebCopyFilehandle(nebServer *server, int sourceFH, int destFH)
Note: See TracChangeset for help on using the changeset viewer.