mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-15 08:31:57 -05:00
Fix an issue with hashing compound callsigns with prefixes shorter than 3 characters
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7044 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
e7ecd5f5b3
commit
c2c982dba9
@ -149,7 +149,7 @@ int unpackgrid( int32_t ngrid, char *grid)
|
|||||||
|
|
||||||
int unpackpfx( int32_t nprefix, char *call)
|
int unpackpfx( int32_t nprefix, char *call)
|
||||||
{
|
{
|
||||||
char nc, pfx[4]="", tmpcall[7]="";
|
char nc, pfx[4]={'\0'}, tmpcall[7];
|
||||||
int i;
|
int i;
|
||||||
int32_t n;
|
int32_t n;
|
||||||
|
|
||||||
@ -170,8 +170,9 @@ int unpackpfx( int32_t nprefix, char *call)
|
|||||||
}
|
}
|
||||||
n=n/37;
|
n=n/37;
|
||||||
}
|
}
|
||||||
|
|
||||||
strcpy(call,pfx);
|
char * p = strrchr(pfx,' ');
|
||||||
|
strcpy(call, p ? p + 1 : pfx);
|
||||||
strncat(call,"/",1);
|
strncat(call,"/",1);
|
||||||
strncat(call,tmpcall,strlen(tmpcall));
|
strncat(call,tmpcall,strlen(tmpcall));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user