The FFT is a special algorithm for calculating the discrete Fourier transform (DFT) of a finite length sampled and quantised signal. The FFT algorithm relies on binary arithmetic operations and therefore only works on record lengths comprising a power of 2 samples (eg 256, 512, 1024, 2048 etc samples). This means that your equipment is not using the FFT algorithm, but some other DFT algotithm.
The DFT tells you the signal amplitude at frequencies with periods which are precisely integer divisions of the record length, T, ie periods of T/1 T/2 T/3 T/4 T/5 etc and frequencies of 1/T 2/T 3/T etc. It tells you NOTHING about what is happening at frequencies in between.
Some analysis equipment is able to perform "zoom" DFT analysis. This gives you a higher frequency resolution over a smaller frequency range compared to a standard baseband DFT.
Try a search for zoom DFT/FFT on Google for more info
M