identify rev number as from git

This commit is contained in:
Eric House 2010-06-05 07:25:24 -07:00
parent 21fef0ded8
commit 8aaaa06bcb
2 changed files with 2 additions and 2 deletions

View file

@ -333,7 +333,7 @@ cmd_set( int socket, const char** args )
void
format_rev( char* buf, int len )
{
snprintf( buf, len, "svn rev: %s", SVN_REV );
snprintf( buf, len, "git rev: %s", SVN_REV );
}
static bool

View file

@ -548,7 +548,7 @@ usage( char* arg0 )
#endif
"\t-t <nWorkerThreads> (how many worker threads to use)\\\n"
);
fprintf( stderr, "svn rev. %s\n", SVN_REV );
fprintf( stderr, "git rev. %s\n", SVN_REV );
}
/* sockets that need to be closable from interrupt handler */