forked from github/server
Merge branch 'master' of github.com:eressea/server
This commit is contained in:
commit
367307575c
|
@ -1,3 +1,3 @@
|
|||
#define VERSION_MAJOR 3
|
||||
#define VERSION_MINOR 3
|
||||
#define VERSION_BUILD 687
|
||||
#define VERSION_MINOR 4
|
||||
#define VERSION_BUILD 689
|
||||
|
|
|
@ -2385,7 +2385,7 @@ static bool sell(unit * u, request ** sellorders, struct order *ord)
|
|||
}
|
||||
}
|
||||
else {
|
||||
n = atoi((const char *)s);
|
||||
n = s ? atoi(s) : 0;
|
||||
if (n == 0) {
|
||||
cmistake(u, ord, 27, MSG_COMMERCE);
|
||||
return false;
|
||||
|
|
|
@ -249,7 +249,7 @@ faction *addfaction(const char *email, const char *password,
|
|||
char buf[128];
|
||||
|
||||
if (set_email(&f->email, email) != 0) {
|
||||
log_error("Invalid email address for faction %s: %s\n", itoa36(f->no), email);
|
||||
log_warning("Invalid email address for faction %s: %s\n", itoa36(f->no), email);
|
||||
}
|
||||
|
||||
faction_setpassword(f, password);
|
||||
|
|
|
@ -924,7 +924,7 @@ int quit_cmd(unit * u, struct order *ord)
|
|||
keyword_t kwd;
|
||||
|
||||
kwd = init_order(ord);
|
||||
assert(kwd == K_PASSWORD);
|
||||
assert(kwd == K_QUIT);
|
||||
passwd = getstrtoken();
|
||||
if (checkpasswd(f, (const char *)passwd, false)) {
|
||||
if (EnhancedQuit()) {
|
||||
|
|
Loading…
Reference in New Issue